Stefan Zeiger

Results 101 comments of Stefan Zeiger

The motivating use case is indeed the collections migration where we see the need for separate source files in many cases. I neglected to put that into the proposal because...

Here's a summary of my AST-based preprocessor prototype (https://github.com/szeiger/scala/tree/wip/preprocessor). It's the same approach that Rust uses for the `cfg` attribute and macro. Syntax ------- Conditional compilation is done with a...

It should "just work" like any other query. Maybe a variance bug? I've fixed those for other corner cases. What's the compiler error? On June 10, 2015 11:34:46 PM GMT+02:00,...

It's not on the roadmap for Slick at the moment.

take + drop are done in 2.1. I don't have a solution for Set operations yet. Rescheduling.

Depending on the driver and other circumstances (like returning primary keys) Slick may fall back to individual inserts. In case of a simple insert on MySQL, it checks the JDBC...

The problem is here: https://github.com/slick/slick/blob/b0a43942ae2e7a2ebb6fbf048da20fb3e0a1178d/slick/src/main/scala/slick/jdbc/JdbcStatementBuilderComponent.scala#L608 It passes a `checkNotExists` flag to `createTable` but then calls `createPrimaryKey` and `createIndex` which do not even have such a flag. It's not limited to...

This produces a DBIOAction. You can already do the same with the interpolators. A proper integration of Plain SQL subqueries into the Lifted Embedding would first of all require Plain...