Open pgiacomo69 opened 4 years ago
ACTUAL RESULT Identity column is displayed as "ID BIGINT NOT NULL" instead of "ID BIGINT GENERATED BY DEFAULT AS IDENTITY NOT NULL"
STEPS TO REPROCUDE THIS ISSUE
Hi @pgiacomo69 , please see https://github.com/Jdochoa/flamerobin/tree/FB3 and help me with feedback
Hi @pgiacomo69 , please see https://github.com/Jdochoa/flamerobin/tree/FB3 and help me with feedback
Ok, 0.9.3.5 Snapshot partially solves the issue, altough column property dialog still doesn't work well for identity columns, having it shown in DDL it's ok! Great Work!
Hi @pgiacomo69 ,
Is this issue still reproducible in 0.9.3.8 Snapshot version?
Actually, creating a table:
CREATE TABLE table_name ( id integer generated by default as identity primary key, descr varchar(20) );
its ddl from 'Properties' is different:
CREATE TABLE TABLE_NAME ( ID integer GENERATED BY DEFAULT AS IDENTITY NOT NULL, DESCR varchar(20), CONSTRAINT INTEG_92 PRIMARY KEY (ID) );
Thanks for your Work!
Currently, when showing table properties or generating its DDL, Identitity attributes for columns are completely ignored. I understand that to manage this property it needs several modifications on Column Property form, but for now it would be very useful to have this information at least showed in Table property page and "Show DDL".