Asa Zernik

Results 17 comments of Asa Zernik

Re: `CASE WHEN`, `notDistinctFrom` would look something like this: ```sql CASE foo = bar WHEN true THEN true ELSE false END ``` Using `notDistinctFrom` because it makes the mechanism more...

I believe this is fixed by 0adf67b6a6a240bb44423b632a9619bacbb134cb.

Note on second glance - because of extensive whitespace changes, the diffs are best viewed with `--color-words --ignore-space-change`

@leebyron Specifically, the feature request is to be able to say: ```javascript const suites = Object.freeze([ 'DIAMONDS', 'CLUBS', 'HEARTS', 'SPADES', }) type Suit = $ArrayValues // No Error const testDiamond:...

To clarify the above comment - `someEnum.members()` is a method which does what I and I think most other people in this thread wanted: single source of truth, no boilerplate,...

The version included in release 2023.02. Checking now, that seems to be 2.5.0.

Was working on fixing asteroid drilling pre-1.10. Just went through my old fork, and rebased my WIP branch. It's still built around the old

Some notes for future implementors: `DELETE` and `UPDATE` on joined queries is not standard SQL. Even where multiple databases support the feature, they do so with incompatible syntax. Support will...

I've made this both work and be quite easy on the eye by adding a couple of implicit conversions; you can do this all manually, but it'll be ugly. ```...

@i-schuetz Disclaimer: not a Slick developer, I may be very wrong about implementation details. A better way to think about it is that a DBIOAction like a Future, but depends...