mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 03:08:40 -04:00
25 lines
312 B
Plaintext
25 lines
312 B
Plaintext
include ./test_data.slt
|
|
|
|
query IT rowsort
|
|
select * from inventory
|
|
----
|
|
1 'health1'
|
|
2 'health2'
|
|
3 'health3'
|
|
|
|
statement ok
|
|
DELETE FROM inventory WHERE inventory_id = 1
|
|
|
|
query IT rowsort
|
|
select * from inventory
|
|
----
|
|
2 'health2'
|
|
3 'health3'
|
|
|
|
statement ok
|
|
DELETE FROM inventory
|
|
|
|
query IT
|
|
select * from inventory
|
|
----
|