test: add bulk insert to loadtest (#2358)
This commit is contained in:
@@ -13,9 +13,15 @@ INSERT INTO test.actors VALUES (1, 'John Doe');
|
||||
|
||||
-- POST target needs generated PK
|
||||
CREATE TABLE test.films (
|
||||
PRIMARY KEY (film),
|
||||
film INT GENERATED BY DEFAULT AS IDENTITY,
|
||||
title TEXT
|
||||
id INT PRIMARY KEY,
|
||||
title TEXT,
|
||||
year TEXT,
|
||||
runtime TEXT,
|
||||
genres TEXT[],
|
||||
director TEXT,
|
||||
actors TEXT,
|
||||
plot TEXT,
|
||||
"posterUrl" TEXT
|
||||
);
|
||||
|
||||
-- DELETE target remains empty
|
||||
|
||||
Reference in New Issue
Block a user