ALTER SEQUENCE [ IF EXISTS ] name [ INCREMENT [ BY ] increment ]
[ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
[ START [ WITH ] start ]
[ RESTART [ [ WITH ] restart ] ]
[ CACHE cache ] [ [ NO ] CYCLE ]
[ OWNED BY { table_name.column_name | NONE } ]
ALTER SEQUENCE [ IF EXISTS ] name OWNER TO new_owner
ALTER SEQUENCE [ IF EXISTS ] name RENAME TO new_name
ALTER SEQUENCE [ IF EXISTS ] name SET SCHEMA new_schema
2. We can look into PostgreSQL 9.2 and below and see what are the options that we need to support as well in the GUI
|
|
64 KB
initial work complete. PostgreSQL did major rework of there sequences so this new code will only work for versions 9.1+ as the previous versions had catalog issues gathering there data. needs testing..
Not supporting change owner...
Issue #8937 |
| Closed |
| Fixed |
| Resolved |
Completion |
| No due date |
| Fixed Build 13.0.1-7 |
| No time estimate |
1 issue link |
breaks #8952
Issue #8952PostgreSQL 9.2.2 and 9.1.4 - Schema Script Generator not listing Sequences I see in the Schema Browser |
initial work complete. PostgreSQL did major rework of there sequences so this new code will only work for versions 9.1+ as the previous versions had catalog issues gathering there data. needs testing..
Not supporting change owner...