- This topic has 3 replies, 2 voices, and was last updated 17 years, 5 months ago by
Loyal Water.
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
Stuart SchmuklerMemberFolks,
I generated DDL from a table in postgres. The generated DDL did not work. It seems that a single quote in a comment was not properly quoted.
Here is the DDL from MyEclipse 6.0.1 GA :
create table "public"."geo_sets"( "id" serial not null, "code" int4 not null, "set_members" varchar(1024) not null, "set_type" int4, "description" varchar(100), constraint "geo_sets_pkey" primary key ("id") ); comment on column "public"."geo_sets"."code" is 'This is the unique code that summarizes the set members.'; comment on column "public"."geo_sets"."set_type" is 'Use 0=regions, 1=countries, 2=dma's'; comment on column "public"."geo_sets"."description" is 'For the UI to display.'; create unique index "geo_sets_pkey" on "public"."geo_sets"("id");
And here is the the DDL generated from the same table by pgAdmin III:
-- Table: geo_sets -- DROP TABLE geo_sets; CREATE TABLE geo_sets ( id serial NOT NULL, code integer NOT NULL, -- This is the unique code that summarizes the set members. set_members character varying(1024) NOT NULL, set_type integer, -- Use 0=regions, 1=countries, 2=dma's description character varying(100), -- For the UI to display. CONSTRAINT geo_sets_pkey PRIMARY KEY (id) ) WITHOUT OIDS; ALTER TABLE geo_sets OWNER TO postgres; COMMENT ON COLUMN geo_sets.code IS 'This is the unique code that summarizes the set members.'; COMMENT ON COLUMN geo_sets.set_type IS 'Use 0=regions, 1=countries, 2=dma''s'; COMMENT ON COLUMN geo_sets.description IS 'For the UI to display.';
Stuart
January 28, 2008 at 12:31 pm #281217
Loyal WaterMemberStuart,
Im sorry but I’m a little confused here. There is an issue with the postgres generated DDL or MyEclipse generated DDL?January 28, 2008 at 12:57 pm #281219
Stuart SchmuklerMemberThe MyEclipse generated DDL contains an improperly quoted single quote mark.
January 29, 2008 at 8:33 am #281252
Loyal WaterMemberSaS,
I’ll get this checked by the dev team. Thank you for bringing this up. -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)