Skip to content

Commit

Permalink
make bulk_insert be compatible with RisingWave
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 committed Dec 18, 2023
1 parent 1bb8620 commit 5409128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lua/bulk_insert.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ function prepare()
print("Creating table 'sbtest" .. i .. "'...")
con:query(string.format([[
CREATE TABLE IF NOT EXISTS sbtest%d (
id INTEGER NOT NULL,
k INTEGER DEFAULT '0' NOT NULL,
id INTEGER,
k INTEGER,
PRIMARY KEY (id))]], i))
end
end
Expand Down

0 comments on commit 5409128

Please sign in to comment.