mirror of https://github.com/citusdata/citus.git
alter_index
parent
1cbfd21efa
commit
d0b5434280
|
@ -47,7 +47,7 @@ ORDER BY c.relname, a.attnum;
|
|||
\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 LIKE 'test\_idx%'
|
||||
JOIN pg_class c ON a.attrelid = c.oid AND c.relname LIKE 'test\_idx%\_\d%'
|
||||
ORDER BY c.relname, a.attnum;
|
||||
relname | attstattarget
|
||||
---------------------------------------------------------------------
|
||||
|
|
|
@ -73,14 +73,12 @@ test: multi_behavioral_analytics_basics multi_behavioral_analytics_single_shard_
|
|||
test: multi_shard_update_delete recursive_dml_with_different_planners_executors
|
||||
test: insert_select_repartition window_functions dml_recursive multi_insert_select_window
|
||||
test: multi_insert_select_conflict citus_table_triggers
|
||||
test: multi_row_insert insert_select_into_local_table multi_create_table_new_features
|
||||
test: multi_row_insert insert_select_into_local_table multi_create_table_new_features alter_index
|
||||
|
||||
# following should not run in parallel because it relies on connection counts to workers
|
||||
test: insert_select_connection_leak
|
||||
|
||||
test: check_mx
|
||||
test: turn_mx_off
|
||||
test: alter_index
|
||||
test: turn_mx_on
|
||||
# ---------
|
||||
# at the end of the regression tests regarding recursively planned modifications
|
||||
# ensure that we don't leak any intermediate results
|
||||
|
|
|
@ -31,7 +31,7 @@ ORDER BY c.relname, a.attnum;
|
|||
\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 LIKE 'test\_idx%'
|
||||
JOIN pg_class c ON a.attrelid = c.oid AND c.relname LIKE 'test\_idx%\_\d%'
|
||||
ORDER BY c.relname, a.attnum;
|
||||
\c - - - :master_port
|
||||
|
||||
|
|
Loading…
Reference in New Issue