Stefan Zeiger
Stefan Zeiger
When two unrelated tables with `LiteralColumn`s in their `*` projections are combined with `union`, `expandTables` discards the individual expansions and only uses the first `LiteralColumn` value: ``` def testSupport6935 =...
As discovered in https://support.typesafe.com/agent/case/5760, the default on MySQL is not to store fractional seconds in TIMESTAMP columns (see https://dev.mysql.com/doc/refman/5.7/en/fractional-seconds.html). We could override this to make 6 digits the default when...
As an extension of https://github.com/slick/slick/pull/1649, it would be good to translate calls of the form `.distinct.sortBy(...)` and`.sortBy(...).distinct` to a single comprehension. This is not as simple as #1649 (which already...
The Slick drivers already contain database-specific implementations of all standard types. We should make those usable from Plain SQL queries as well. The new interpolators are already part of the...
This is a simplified reproduction of a Lightbend support case, originally reported against Slick 3.0.1 + Oracle profile, but reproducible in master with H2. Here's the test code: ```scala import...