From 9bf409aff620083559456ac2bb221ca841fe1fa0 Mon Sep 17 00:00:00 2001 From: Artem Gavrilov Date: Mon, 23 Sep 2024 20:02:53 +0200 Subject: [PATCH] PG-1056 Use proper AM in test --- sql/update.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);