griff і⊙
griff і⊙
Kotlin double is primitive type for Number javaObjectType is the Boxed type Wait for issue to be merged https://github.com/querydsl/querydsl/pull/3346
Explicitly add fake extension points for dialects to implement This is added to sql-psi core as needs to be referenced in sql-delight to use in Database schema generation e.g `create_type_stmt`...
In PostgreSql, CREATE TYPE is used for Enums, Ranges and Composite types. https://www.postgresql.org/docs/15/sql-createtype.html The ALTER TYPE statement would also have to be added. Based on the feature request https://github.com/cashapp/sqldelight/issues/4339, I...
fixes #5028 🚧 🍔 👷 With JDBC, setObject...Types.OTHER can be used to bind a String to a JSON type Add new binding method* in JdbcDriver Keep the `jsonDataType` as a...
fixes #5032 👥 Same column adjacency fix as for Sqlite Added fixture test - UPDATE FROM using two tables with same column name
fixes #5026 Basic GIN support for json columns ``` sql CREATE INDEX gin_alpha_1 ON json_gin USING GIN (alpha); ``` support gin operator classes (includes non json operators for completeness https://www.postgresql.org/docs/current/gin-builtin-opclasses.html)...
### Description Currently JSON and JSONB types and operators are supported - these work with GIN “Generalized Inverted indexes” - GIN is designed for handling cases where the items to...
### SQLDelight Version 2.0.1 / 2.1.0 SNAPSHOT ### SQLDelight Dialect PostgreSql ### Describe the Bug 🔕 Common Table Expression (CTE) `INSERT VALUES...SELECT...RETURNING` clause won't compile https://www.postgresql.org/docs/current/queries-with.html This is the smallest...
fixes #4933 Array contains operators for PostgreSqlDialect Support `` for array type, now shared with json, tsvector types Additionally add `&&` arrays overlap operator * Added grammar for `contains_operator_expression` and...
Fixes #5086 https://github.com/AlecKazakova/sql-psi/pull/616 is now included in SqlDelight dependency * Added Postgresql grammar- must override `join_operator` inherited from sql-psi to include join rules * Added Fixture tests for joins (checked...