Slick 3.1.0
We are happy to announce the release of Slick 3.1.0. These are the major new features compared to Slick 3.0.0:
-
New query compiler back-end. The main goal is to avoid subqueries wherever possible. For example, this query from Slick’s test suite
((xs joinLeft ys on (_.b === _.b)) joinLeft ys on (_._1.b === _.b)).to[Set]
used to get compiled to deeply nested code which could prevent proper optimization by some database engines (in particular MySQL) with Slick 3.0:
select x2.x3, x2.x4, x2.x5, x2.x6, x2.x7, x2.x8, x2.x9, x2.x10
from (
select x11.x12 as x3, x11.x13 as x4, x11.x14 as x5, x11.x15 as x6, x11.x16 as x7, x17.x18 as x8, x17.x19 as x9, x17.x20 as x10
from (
select x21.x22 as x12, x21.x23 as x13, x24.x25 as x14, x24.x26 as x15, x24.x27 as x16
from (
select x28."a" as x22, x28."b" as x23
from "xs_jo" x28
) x21
left outer join (
select 1 as x25, x29."a" as x26, x29."b" as x27
from "ys_jo" x29
) x24
on x21.x23 = x24.x27
) x11
left outer join (
select 1 as x18, x30."a" as x19, x30."b" as x20
from "ys_jo" x30
) x17
on x11.x13 = x17.x20
) x2
Slick 3.1 produces the following code instead:
select x2."b", x3."b", x3."a", x4."b", x2."a", x4."a"
from "xs_jo" x2
left outer join "ys_jo" x3
on x2."b" = x3."b"
left outer join "ys_jo" x4
on x2."b" = x4."b"
-
Improved support for monadic joins in the query compiler. In particular, whenever a monadic join cannot be translated into an applicative join (as required for SQL), the query compiler will fail with a useful error message instead of producing invalid code.
-
Improved configuration of database connections via Typesafe Config: You can now configure arbitrary DataSource classes with Java Bean semantics when running without a connection pool (similar to what was already supported by HikariCP). For example:
db { connectionPool = disabled dataSourceClass = "slick.jdbc.DriverDataSource" properties = { driver = "org.h2.Driver" url = "jdbc:h2:mem:test_ds1" properties = { LOCK_MODE = 1 } } } -
Database connections can be configured through a
DATABASE_URLsyntax as used on PaaS platforms like Heroku:db { dataSourceClass = "slick.jdbc.DatabaseUrlDataSource" properties = { driver = "org.postgresql.Driver" url = "postgres://user:pass@host/dbname" } } -
Configurable class loading when resolving Slick drivers: In containers which separate parts of an application into different ClassLoaders (e.g. Play, OSGi), the previous approach of using
Class.forNamedid not work in all cases. You can now provide a custom ClassLoader, and Slick will fall back to the context ClassLoader in other cases. -
Support for HikariCP is now in a separate module which makes it easier to depend on the correct, binary compatible version of HikariCP.
-
New query operators “distinct” and “distinctOn” which compile to proper
DISTINCTqueries in SQL. -
Performance improvements in the query compiler. Query compilation is now more than 2.5 times as fast as it was in 3.0. This is particularly useful if you frequently have to run queries that cannot be pre-compiled (using Slick’s
Compiledfeature)
You can find the source code for the new release here: https://github.com/slick/slick/tree/3.1.0. Builds for Scala 2.10 and 2.11 are available from Maven Central, as usual. The commercial Slick Extensions package with closed-source drivers for Oracle, DB/2 and SQL Server has been published to the Typesafe repository. See the manual for details on adding it to your build.
In order to use Slick in a Play application we provide the Play Slick plugin. Version 1.1.0, which integrates Slick 3.1.0 into Play 2.4, is now available.
If you are new to Slick check out the Hello Slick template in Typesafe Activator to get started. You can see how Slick is used in a Play application in the Play Scala Intro template.
Here is the complete list of changes from Slick 3.0.0 to 3.1.0:
73a0166Release 3.1.085f3ebaRelease 3.1.0-RC311650b8add documentation for insertOrUpdated7ea32dFix 3VL handling in a scalar optimizationcb64121Release 3.1.0-RC25b5ff92Allow insert operations with no columns to insert.aff4896Fix typing bug inrewriteJoins:afd6f9bAllow illegal length CHAR defaults to be ignored in JdbcModelBuilderb739255Some bug fixes concerning Option types:84cc95aAdd Query#subquery as a precaution for implementing workarounds.8f8ae8bPrevent repetition of bind variables used in GROUP BY:7199b51AddcountDefinedoperator:35b698dFix source links for Slick core scaladocs0cfff09Remove transaction handling from JdbcBackend#Session:29271b1Add test cases for Options of primitive types.007e287Trampolining for chained DBIOActions9c0d371Release 3.1.0-RC1d2e50d4Remove dependent types for.deleteand.findbyextension methods.5cbabf6Add documentation for default string type changesebfb344Ensure non-empty “select” clauses in mergeToComprehensions:f82a8feBetter integration of expandConditionals into expandSums07cd37aAllow selective translation for Take or Drop in removeTakeDrop:dc1c551Correctly propagate a Driver object to DriverDataSource6cb62b8Integrate expandConditionals into expandSumsd286c17Selectively skip compiler phases:9d8bbeeAddQuery.distinctandQuery.distinctOnoperators04ca00dcodegen: schema: Handle case of no tables53cb788codegen: Test case of no tables (schema has invalid syntax)bc90afeA simpler and faster implementation of assignUniqueSymbols969ec5fUse correct discriminator checks under three-valued logice6acabfSome type-related fixes and improvements from tmp/globaltypes2bcdeeaaPrevent retry of lazy Connection acquisition attempt in BaseSession:1634965More intelligent handling of String types on MySQLda7aaa9Create correct syntax for casts on MySQLc9bdcb1More micro-optimizations and streamlining of ConstArray use2adb7c3Use a custom collection implementation in the AST:b48115aProfiling settings plus small performance improvements8ac4298Only set Hikari dataSourceClassName or driverClassName but not both8dac76fAdd two more expr customization for pgcurrent_dateandcurrent_time1c9469fScalar optimization & better discriminator column picking:b01e539More query compiler performance improvements:b87c994Eliminate explicit outer join discriminator columns where possible34bf73fSet Slick Extensions version in the manual independent of Slick version3bd24ccSome small query compiler performance optimizations:a71aff4AdddetectRebuildoption to mark rebuilt leaf nodes after each phase:ed2af9bAdd a benchmark for the query compiler.7333bd9More consistent Query.length (“COUNT(*)”) semantics:16be008Fix docs and simplify (no binary compatibility constraints for 3.1)c197fdbMove HikariCPJdbcDataSource into a separate moduleb651a62Clean up the build file764b405Avoid subqueries around zipWithIndex operations7514666Database.forConfig uses provided config paramsnumThreadsandqueueSize5ca0e5cAdd tests for theremoveTakeDropphase:a30d5dfFixed a mistake in the docs markupe957544Fix the implicit conversions for Compiled queries.ea15636Workaround SI-7139 caused by eponymous type alias and objectc762b55Improve code generationaaf2a22Early hoisting of client-side operations:99c2737add one more parametertypeNametojdbcTypeToScalaffee22cImprove subquery fusion for Union operationsfbd2289Add the correct scala-sbt repo for resolving sbt-testng.plugin31672a2Remove deprecated APIs2ae5320Added documentation for DatabaseUrlDataSource7fcd722Add a test for DatabaseUrlDataSourcef637d52Revised DatabaseUrlDataSource to have a no-arg cstr.9cfd03eAdded a DatabaseUrlDataSource for use with DATABASE_URL79d2e67Support Typesafe Config-based configuration of DataSource beans4565f09Clean up the ClassLoader support from #1152:95dad0aSet hikariCP validationTimeout from config or 1000ms9b58a50Pin HikariCP at version 2.3.7 to match play-slick5ef94f8Remove AccessDrivercce3b95Remove the Direct Embedding (deprecated in 3.0)4b7262eAdd test for resolving reference.conf in OSGi contexta9dd9a8Fix OSGi tests (did not run due to duplicate slf4j on classpath)ff264c9Bump version numbersb9861f1Remove obsolete code36d5552Improve Take, Drop and zip join translationf170783Fix type bugs and enforce correct types in the query compiler:85df538Codegen: Suppress output of schema.create if ddlEnabled is false4fd654fAdd Gitter badgee26a7d0Remove TypedNode:1c2d5dbAST simplifications3470fa0Compiler improvements:8baa079New Query Compiler Back-End2b14139Early transformation of monadic joins into applicative joins.f53f06eMove createResultSetMapping down after forceOuterBinds1d55c69Fix view source for scaladoc and edit this file on github for docs325f200Improve tree loggingae7e4d8Improve logging:1abf753Allow classloader to be specified for classloading0cab15eAdd docs about DBIO composition.
