File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313
1414* Fix all auto-generating and auto-formatting issues at once via
1515```
16- ./mill -i -w mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources + "scalasql[2.13.12].test" + generateTutorial + generateReference
16+ ./mill -i -w __.fix + mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources + "scalasql[2.13.12].test" + generateTutorial + generateReference
1717```
1818
1919* You can run ad-hoc benchmarks using any test case via the ` SCALASQL_RUN_BENCHMARK `
Original file line number Diff line number Diff line change @@ -1249,7 +1249,7 @@ is rolled back and all changes are undoned (as seen below)
12491249```scala
12501250dbClient.transaction { implicit db =>
12511251 try {
1252- db.savepoint { implicit sp =>
1252+ db.savepoint { _ =>
12531253 db.run(City.delete(_.countryCode === "SGP"))
12541254
12551255 db.run(City.select.filter(_.countryCode === "SGP")) ==> Seq()
You can’t perform that action at this time.
0 commit comments