Fix UPSERT bug on camelCase PK column

This commit is contained in:
steve-chavez
2018-05-31 11:57:42 -05:00
committed by Steve Chávez
parent 9ea7529f30
commit 37e7398a85
6 changed files with 39 additions and 1 deletions
+3
View File
@@ -411,3 +411,6 @@ INSERT INTO zone VALUES (4, 'store 4', 3, 1);
-- for foreign table projects_dump
copy (select id, name, client_id from projects) to '/tmp/projects_dump.csv' with csv;
TRUNCATE TABLE "UnitTest" CASCADE;
INSERT INTO "UnitTest" VALUES (1, 'unit test 1');