Arseniy Zhizhelev

Results 14 issues of Arseniy Zhizhelev

**Version**: `4.8.1` **Module**: `quill-sql` **Database**: `postgres` ### Expected behavior double lift should be detected at compile time. ### Actual behavior It fails at runtime with ``` java.lang.RuntimeException: Unquotation can only...

**Version**: 4.8.1 **Module**: `quill-sql` **Database**: `postgres` ```scala type MyRow1 = (Int, String) type MyRow2 = Int *: String *: EmptyTuple inline def q = quote{ querySchema[MyRow2]("my_table", t => t._1 ->...

Fixes #411 ### Problem To support Scala 3-style tuples, a few changes are needed: - support at Quat level; - decode to Scala 3 tuples; - support pattern matching inside...

Make ExecutionContext a resource. (to make sure that it's impossible to accidentally leave it unclosed.) Make sure, that Close waits for completion of all threads.

Currently streams can only use resources provided at the top level via ordinary `resource.Use`. Sometimes we need to pass streams around and we wish that resources are correctly released when...

go-lang `context.Context` might be used for compatibility purposes.

It's a dirty solution. Another one is needed. Ref #47