mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 11:17:50 -04:00
f6da9e1f5f
Signed-off-by: Viktor Szépe <viktor@szepe.net>
13 lines
245 B
Plaintext
13 lines
245 B
Plaintext
statement ok
|
|
CREATE TABLE inventory (inventory_id INTEGER, name TEXT)
|
|
|
|
statement ok
|
|
INSERT INTO inventory (inventory_id, name) VALUES (1, 'health1');
|
|
|
|
query IT
|
|
select * from inventory
|
|
----
|
|
1 'health1'
|
|
|
|
#TODO: It fails with many separate inserts
|