Skip to content

Commit

Permalink
PG-1056 Use proper AM in test
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Sep 23, 2024
1 parent dc79a8c commit 9bf409a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/update.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9bf409a

Please sign in to comment.