Made change and did ER conversion test between Greenplum and PostgreSQL on serial and bigserial data types (Greenplum 4.2 is based on PostgreSQL 8.2).
Change made in createColumn() method probably will never get exercised in the real world. This is because serial and bigserial are not true types, but merely a notational convenience for setting up unique identifier columns; they are actually created as integer and bigint respectively, with a default value. See link below for more info:
http://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-SERIAL
Fixed in Version: 13.0-rc-4 and Build #: 31199
Fixed in Version: 13.0-rc-4 and Build #: 31199
Issue #8053 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build trunk/30574 |
No time estimate |
1 issue link |
relates to #7998
Issue #7998ER Modeler Conversion - Greenplum |
Made change and did ER conversion test between Greenplum and PostgreSQL on serial and bigserial data types (Greenplum 4.2 is based on PostgreSQL 8.2).
Change made in createColumn() method probably will never get exercised in the real world. This is because serial and bigserial are not true types, but merely a notational convenience for setting up unique identifier columns; they are actually created as integer and bigint respectively, with a default value. See link below for more info:
http://www.postgresql.org/docs/8.2/static/datatype-numeric.html#DATATYPE-SERIAL