mirror of https://github.com/citusdata/citus.git
67 lines
2.2 KiB
Plaintext
67 lines
2.2 KiB
Plaintext
CREATE SCHEMA alterindex;
|
|
SET search_path TO "alterindex";
|
|
SET citus.next_shard_id TO 980000;
|
|
SET client_min_messages TO WARNING;
|
|
SET citus.shard_count TO 4;
|
|
SET citus.shard_replication_factor TO 1;
|
|
-- test alter index set statistics
|
|
CREATE TABLE t1 (a int, b int);
|
|
SELECT create_distributed_table('t1','a');
|
|
create_distributed_table
|
|
---------------------------------------------------------------------
|
|
|
|
(1 row)
|
|
|
|
CREATE INDEX test_idx on t1 ((a+b));
|
|
ALTER INDEX test_idx ALTER COLUMN 1 SET STATISTICS 4646;
|
|
ALTER INDEX test_idx ALTER COLUMN 1 SET STATISTICS -4646;
|
|
ERROR: statistics target -4646 is too low
|
|
ALTER INDEX test_idx ALTER COLUMN 3 SET STATISTICS 4646;
|
|
ERROR: column number 3 of relation "test_idx" does not exist
|
|
-- test alter index set statistics before distribution
|
|
CREATE TABLE t2 (a int, b int);
|
|
CREATE INDEX test_idx2 on t2 ((a+b), (a-b), (a*b));
|
|
ALTER INDEX test_idx2 ALTER COLUMN 2 SET STATISTICS 3737;
|
|
ALTER INDEX test_idx2 ALTER COLUMN 3 SET STATISTICS 3737;
|
|
ALTER INDEX test_idx2 ALTER COLUMN 2 SET STATISTICS 99999;
|
|
WARNING: lowering statistics target to 10000
|
|
SELECT create_distributed_table('t2','a');
|
|
create_distributed_table
|
|
---------------------------------------------------------------------
|
|
|
|
(1 row)
|
|
|
|
-- verify statistics is set
|
|
SELECT c.relname, a.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 | 10000
|
|
test_idx2 | 3737
|
|
(4 rows)
|
|
|
|
\c - - - :worker_1_port
|
|
SELECT c.relname, a.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 | 10000
|
|
test_idx2_980004 | 3737
|
|
test_idx2_980006 | -1
|
|
test_idx2_980006 | 10000
|
|
test_idx2_980006 | 3737
|
|
test_idx_980000 | 4646
|
|
test_idx_980002 | 4646
|
|
(8 rows)
|
|
|
|
\c - - - :master_port
|
|
SET client_min_messages TO WARNING;
|
|
DROP SCHEMA alterindex CASCADE;
|