Skip to content

Commit

Permalink
additional fields should be placed at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Aug 15, 2016
1 parent c2a2328 commit ea4e5cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testdata/provider/testdata_pg.sql
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ INSERT INTO qgis_test."some_poly_data" (pk, geom) VALUES
-- Provider check with compound key

CREATE TABLE qgis_test."someDataCompound" (
key1 integer,
key2 integer,
pk integer NOT NULL,
cnt integer,
name text DEFAULT 'qgis',
name2 text DEFAULT 'qgis',
num_char text,
geom public.geometry(Point,4326),
key1 integer,
key2 integer,
PRIMARY KEY(key1, key2)
);

Expand Down

1 comment on commit ea4e5cb

@3nids
Copy link
Member Author

@3nids 3nids commented on ea4e5cb Aug 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this introduces a failing test on Qt5 which should be fixed by #3384

Please sign in to comment.