Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
m3hm3t committed Dec 27, 2024
1 parent 3f71d79 commit 6f71ece
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/test/regress/expected/pg17.out
Original file line number Diff line number Diff line change
Expand Up @@ -1448,11 +1448,12 @@ WHERE relname = 'test_partitioned_alter';
-- Check the partitions' access methods
SELECT relname, relam
FROM pg_class
WHERE relname IN ('test_partition_1', 'test_partition_2');
WHERE relname IN ('test_partition_1', 'test_partition_2')
ORDER BY relname;
relname | relam
---------------------------------------------------------------------
test_partition_2 | 2
test_partition_1 | 2
test_partition_2 | 2
(2 rows)

-- Step 5: Test ALTER TABLE ... SET ACCESS METHOD to a different method
Expand Down
3 changes: 2 additions & 1 deletion src/test/regress/sql/pg17.sql
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,8 @@ WHERE relname = 'test_partitioned_alter';
-- Check the partitions' access methods
SELECT relname, relam
FROM pg_class
WHERE relname IN ('test_partition_1', 'test_partition_2');
WHERE relname IN ('test_partition_1', 'test_partition_2')
ORDER BY relname;

-- Step 5: Test ALTER TABLE ... SET ACCESS METHOD to a different method
ALTER TABLE test_partitioned_alter SET ACCESS METHOD columnar;
Expand Down

0 comments on commit 6f71ece

Please sign in to comment.