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
For one of my queries, I use the pg_catalog.pg_sequence built-in table, but sqlc says it doesn't exist. My current workaround is to add then delete the following table:
CREATE TABLE if not exists pg_sequence (
"seqrelid" oid not null,
"seqmin" bigint not null,
"seqmax" bigint not null
);
Version
1.12.0
What happened?
For one of my queries, I use the
pg_catalog.pg_sequence
built-in table, but sqlc says it doesn't exist. My current workaround is to add then delete the following table:Relevant log output
No response
Database schema
No response
SQL queries
Configuration
No response
Playground URL
https://play.sqlc.dev/p/c12d58abd999f7899f83f72411c87786988a24d13cf6452c53513be7f97e32e2
What operating system are you using?
No response
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: