Skip to content

Commit ea4e5cb

Browse files
committedAug 15, 2016
additional fields should be placed at the end
1 parent c2a2328 commit ea4e5cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/testdata/provider/testdata_pg.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ INSERT INTO qgis_test."some_poly_data" (pk, geom) VALUES
7171
-- Provider check with compound key
7272

7373
CREATE TABLE qgis_test."someDataCompound" (
74-
key1 integer,
75-
key2 integer,
7674
pk integer NOT NULL,
7775
cnt integer,
7876
name text DEFAULT 'qgis',
7977
name2 text DEFAULT 'qgis',
8078
num_char text,
8179
geom public.geometry(Point,4326),
80+
key1 integer,
81+
key2 integer,
8282
PRIMARY KEY(key1, key2)
8383
);
8484

1 commit comments

Comments
 (1)

3nids commented on Aug 15, 2016

@3nids
MemberAuthor

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

Please sign in to comment.