You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration-tests/go-sql-server-driver/tests/sql-server-orig.yaml
-44Lines changed: 0 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -246,50 +246,6 @@ tests:
246
246
rows:
247
247
- ["0","1","2","3","4","5"]
248
248
- ["1","1","2","3","4","5"]
249
-
- name: COPY into a table with a conflicting primary key (no IGNORE equivalent)
250
-
skip: "Postgres COPY errors on a primary-key conflict and has no equivalent of MySQL's LOAD DATA ... IGNORE; the Postgres idiom is INSERT ... ON CONFLICT DO NOTHING"
- exec: "INSERT INTO test VALUES (0, 0, 0, 0, 0, 0)"
264
-
- exec: "COPY test FROM '1pk5col-ints.csv' WITH (FORMAT csv, HEADER)"
265
-
- query: "SELECT * FROM test"
266
-
result:
267
-
columns: ["pk","c1","c2","c3","c4","c5"]
268
-
rows:
269
-
- ["0","0","0","0","0","0"]
270
-
- ["1","1","2","3","4","5"]
271
-
- name: COPY into a table with a conflicting primary key (no REPLACE equivalent)
272
-
skip: "Postgres COPY errors on a primary-key conflict and has no equivalent of MySQL's LOAD DATA ... REPLACE; the Postgres idiom is INSERT ... ON CONFLICT DO UPDATE"
0 commit comments