test: add tests for bulk upserts with surrogate keys
This commit is contained in:
Vendored
+12
@@ -3782,3 +3782,15 @@ create table process_supervisor (
|
||||
supervisor_id int references supervisors(id),
|
||||
primary key (process_id, supervisor_id)
|
||||
);
|
||||
|
||||
create table surr_serial_upsert (
|
||||
id serial primary key,
|
||||
name text,
|
||||
extra text
|
||||
);
|
||||
|
||||
create table surr_gen_default_upsert (
|
||||
id int generated by default as identity primary key,
|
||||
name text,
|
||||
extra text
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user