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
Sequences are used for a lot of things in PostgreSQL. They're the underlying mechanism by which SERIAL/BIGSERIAL increment keys and they can be used to generate identity columns with GENERATED columns. We should support creating sequences like specified in the documentation.
CREATE [ TEMPORARY | TEMP ] SEQUENCE [ IF NOT EXISTS ] name
[ AS data_type ]
[ INCREMENT [ BY ] increment ]
[ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
[ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]
[ OWNED BY { table_name.column_name | NONE } ]
Until we support sequences, the full grammar of generated columns as in #295 will be incomplete.
The text was updated successfully, but these errors were encountered:
Dialect
PostgreSQL
Failing SQL
Description
Sequences are used for a lot of things in PostgreSQL. They're the underlying mechanism by which
SERIAL/BIGSERIAL
increment keys and they can be used to generate identity columns withGENERATED
columns. We should support creating sequences like specified in the documentation.Until we support sequences, the full grammar of generated columns as in #295 will be incomplete.
The text was updated successfully, but these errors were encountered: