Skip to content

Commit d801e74

Browse files
authored
test with just unique keys (#87)
1 parent 1fbc3b2 commit d801e74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/sampletables.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ INSERT INTO booltab VALUES (3, 'true', true);
3232
INSERT INTO booltab VALUES (4, 'false', false);
3333
INSERT INTO booltab VALUES (5, 'not', false);
3434

35-
CREATE TABLE test_special( id integer primary key, ival integer);
35+
CREATE TABLE test_special( id integer, ival integer);
36+
CREATE UNIQUE index test_special_id on public.test_special(id);
3637
CREATE UNIQUE index test_special_ui on public.test_special(ival);
3738

3839
-- View

0 commit comments

Comments
 (0)