mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-26 09:33:09 -04:00
13 lines
244 B
Plaintext
13 lines
244 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 sperate inserts
|