diff --git a/sql/update.sql b/sql/update.sql index 6c63bffd..2702940b 100644 --- a/sql/update.sql +++ b/sql/update.sql @@ -8,12 +8,12 @@ CREATE TABLE update_test ( a INT DEFAULT 10, b INT, c TEXT -); +) USING tde_heap_basic; CREATE TABLE upsert_test ( a INT PRIMARY KEY, b TEXT -); +) USING tde_heap_basic; INSERT INTO update_test VALUES (5, 10, 'foo'); INSERT INTO update_test(b, a) VALUES (15, 10);