griff і⊙
griff і⊙
@blackberry2016 Thanks for letting me know - it could be a known problem or other issue e.g https://youtrack.jetbrains.com/issue/KT-13619 but I will try and replicate here. If it's generating a build...
👯♂️ Duplicate of https://github.com/cashapp/sqldelight/issues/4474 PostgreSql dialect specific that may require more support (For example there is no CREATE SCHEMA yet)
🥨 Work-around remove the quotes on "index name" as the issue is that the current grammar doesn't support quotes on index name -> https://github.com/AlecKazakova/sql-psi/blob/2cd4b1f2f8509c2c638cecf55baa675b32d03aae/core/src/main/kotlin/com/alecstrong/sql/psi/core/sql.bnf#L427 The grammar is in https://github.com/AlecKazakova/sql-psi/ as...
sorry to confuse - sqlite does allow the index name to be in quotes, I was referring to `create index` where putting column names in quotes - it allows an...
🏗️ Can you add your gradle build config for sqldelight? Seems close to the other issue where renaming not adding a column fails https://github.com/cashapp/sqldelight/issues/4897 I tried it and don't get...
🔁 It looks like the same issue as https://github.com/cashapp/sqldelight/pull/4777 for Sqlite Same fix seems to work for Postgresql dialect - will create a PR 🥨
🔕 Don't think it's quite correct, as only left joins currently produce nullable types on the `B` table interface given, ```sql SELECT * FROM A LEFT JOIN B USING (id);...
🗞️ This is related to issue https://github.com/cashapp/sqldelight/pull/4578 Where the rows affected is not exposed(intentionally) from the driver (jdbc) implementation - so only `Unit` is returned. The `changes` function is built...
🤔 I am not sure why that doesn't work However, I can only provide a fully working Postgresql example https://github.com/griffio/sqldelight-postgres-example e.g https://github.com/griffio/sqldelight-postgres-example/blob/master/src/main/sqldelight/griffio/queries/City.sq See if that helps to solve issue
🦺 This is an issue related to https://github.com/cashapp/sqldelight/issues/4474#issuecomment-1658348445 ➰ The work around is to use migration files instead -so the `CREATE EXTENSION` could be run in a separate migration, before...