You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlc generate will panic when trying to generate the following sql query:
-- name: AllThingsTrue :one
WITH t AS (
SELECT thing, bool_thing FROM things
WHERE things.thing = $1
), ot AS (
SELECT thing, bool_thing FROM other_things
WHERE other_things.thing = $1
)
SELECT
thing, -- This column is TEXT
bool_and(bool_thing)
FROM (
SELECT thing, bool_thing FROM t
UNION
SELECT thing, bool_thing FROM ot
)
GROUP BY thing;
Version
1.29.0
What happened?
sqlc generate
will panic when trying to generate the following sql query:Relevant log output
Database schema
SQL queries
Configuration
Playground URL
No response
What operating system are you using?
macOS
What database engines are you using?
PostgreSQL
What type of code are you generating?
Go
The text was updated successfully, but these errors were encountered: