Skip to content

Commit

Permalink
alter_index test update
Browse files Browse the repository at this point in the history
update

.

update

.

update

Revert "update"

This reverts commit 630cff9.

update

update

.
  • Loading branch information
m3hm3t committed Nov 14, 2024
1 parent c0a5f5c commit e0da343
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
14 changes: 9 additions & 5 deletions src/test/regress/expected/alter_index.out
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,33 @@ SELECT create_distributed_table('t2','a');
(1 row)

-- verify statistics is set
SELECT c.relname, a.attstattarget
-- pg17 Changed `attstattarget` in `pg_attribute` to use `NullableDatum`, allowing null representation for default statistics target in PostgreSQL 17.
-- https://github.com/postgres/postgres/commit/6a004f1be87d34cfe51acf2fe2552d2b08a79273
SELECT c.relname,
CASE WHEN a.attstattarget = -1 THEN NULL ELSE a.attstattarget END AS attstattarget
FROM pg_attribute a
JOIN pg_class c ON a.attrelid = c.oid AND c.relname LIKE 'test\_idx%'
ORDER BY c.relname, a.attnum;
relname | attstattarget
---------------------------------------------------------------------
test_idx | 4646
test_idx2 | -1
test_idx2 |
test_idx2 | 10000
test_idx2 | 3737
(4 rows)

\c - - - :worker_1_port
SELECT c.relname, a.attstattarget
SELECT c.relname,
CASE WHEN a.attstattarget = -1 THEN NULL ELSE a.attstattarget END AS attstattarget
FROM pg_attribute a
JOIN pg_class c ON a.attrelid = c.oid AND c.relname SIMILAR TO 'test\_idx%\_\d%'
ORDER BY c.relname, a.attnum;
relname | attstattarget
---------------------------------------------------------------------
test_idx2_980004 | -1
test_idx2_980004 |
test_idx2_980004 | 10000
test_idx2_980004 | 3737
test_idx2_980006 | -1
test_idx2_980006 |
test_idx2_980006 | 10000
test_idx2_980006 | 3737
test_idx_980000 | 4646
Expand Down
8 changes: 6 additions & 2 deletions src/test/regress/sql/alter_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ ALTER INDEX test_idx2 ALTER COLUMN 2 SET STATISTICS 99999;
SELECT create_distributed_table('t2','a');

-- verify statistics is set
SELECT c.relname, a.attstattarget
-- pg17 Changed `attstattarget` in `pg_attribute` to use `NullableDatum`, allowing null representation for default statistics target in PostgreSQL 17.
-- https://github.com/postgres/postgres/commit/6a004f1be87d34cfe51acf2fe2552d2b08a79273
SELECT c.relname,
CASE WHEN a.attstattarget = -1 THEN NULL ELSE a.attstattarget END AS attstattarget
FROM pg_attribute a
JOIN pg_class c ON a.attrelid = c.oid AND c.relname LIKE 'test\_idx%'
ORDER BY c.relname, a.attnum;

\c - - - :worker_1_port
SELECT c.relname, a.attstattarget
SELECT c.relname,
CASE WHEN a.attstattarget = -1 THEN NULL ELSE a.attstattarget END AS attstattarget
FROM pg_attribute a
JOIN pg_class c ON a.attrelid = c.oid AND c.relname SIMILAR TO 'test\_idx%\_\d%'
ORDER BY c.relname, a.attnum;
Expand Down

0 comments on commit e0da343

Please sign in to comment.