mirror of https://github.com/citusdata/citus.git
disable other tests
parent
453d2d2b66
commit
c3748e48e9
|
@ -24,35 +24,35 @@ test: multi_test_catalog_views
|
|||
test: multi_mx_create_table
|
||||
test: multi_mx_hide_shard_names
|
||||
test: multi_mx_add_coordinator
|
||||
test: multi_mx_modifications_to_reference_tables
|
||||
test: multi_mx_partitioning
|
||||
test: multi_mx_copy_data multi_mx_router_planner
|
||||
test: multi_mx_schema_support multi_mx_tpch_query1 multi_mx_tpch_query10
|
||||
test: multi_mx_tpch_query12 multi_mx_tpch_query14 multi_mx_tpch_query19
|
||||
test: multi_mx_tpch_query3 multi_mx_tpch_query6 multi_mx_tpch_query7
|
||||
test: multi_mx_tpch_query7_nested multi_mx_ddl
|
||||
test: ch_bench_having_mx
|
||||
test: recursive_dml_queries_mx multi_mx_truncate_from_worker
|
||||
test: multi_mx_repartition_udt_prepare mx_foreign_key_to_reference_table
|
||||
#test: multi_mx_modifications_to_reference_tables
|
||||
#test: multi_mx_partitioning
|
||||
#test: multi_mx_copy_data multi_mx_router_planner
|
||||
#test: multi_mx_schema_support multi_mx_tpch_query1 multi_mx_tpch_query10
|
||||
#test: multi_mx_tpch_query12 multi_mx_tpch_query14 multi_mx_tpch_query19
|
||||
#test: multi_mx_tpch_query3 multi_mx_tpch_query6 multi_mx_tpch_query7
|
||||
#test: multi_mx_tpch_query7_nested multi_mx_ddl
|
||||
#test: ch_bench_having_mx
|
||||
#test: recursive_dml_queries_mx multi_mx_truncate_from_worker
|
||||
test: multi_mx_repartition_udt_prepare
|
||||
test: multi_mx_repartition_join_w1 multi_mx_repartition_join_w2 multi_mx_repartition_udt_w1 multi_mx_repartition_udt_w2
|
||||
test: multi_mx_metadata
|
||||
test: master_evaluation master_evaluation_modify master_evaluation_select
|
||||
test: multi_mx_call
|
||||
test: multi_mx_function_call_delegation
|
||||
test: multi_mx_modifications local_shard_execution
|
||||
test: local_shard_copy
|
||||
test: multi_mx_transaction_recovery
|
||||
test: multi_mx_modifying_xacts
|
||||
test: multi_mx_explain
|
||||
test: multi_mx_reference_table
|
||||
test: multi_mx_insert_select_repartition
|
||||
test: locally_execute_intermediate_results
|
||||
#test: multi_mx_metadata
|
||||
#test: master_evaluation master_evaluation_modify master_evaluation_select
|
||||
#test: multi_mx_call
|
||||
#test: multi_mx_function_call_delegation
|
||||
#test: multi_mx_modifications local_shard_execution
|
||||
#test: local_shard_copy
|
||||
#test: multi_mx_transaction_recovery
|
||||
#test: multi_mx_modifying_xacts
|
||||
#test: multi_mx_explain
|
||||
#test: multi_mx_reference_table
|
||||
#test: multi_mx_insert_select_repartition
|
||||
#test: locally_execute_intermediate_results
|
||||
|
||||
# test that no tests leaked intermediate results. This should always be last
|
||||
test: ensure_no_intermediate_data_leak
|
||||
#test: ensure_no_intermediate_data_leak
|
||||
|
||||
# ---------
|
||||
# ensures that we never leak any connection counts
|
||||
# in the shared memory
|
||||
# --------
|
||||
test: ensure_no_shared_connection_leak
|
||||
#test: ensure_no_shared_connection_leak
|
||||
|
|
|
@ -184,23 +184,23 @@ INSERT INTO repartition_udt_other values (12, '(2,3)'::test_udt, 'foo');
|
|||
SET client_min_messages = LOG;
|
||||
SET citus.task_executor_type = 'task-tracker';
|
||||
|
||||
-- Query that should result in a repartition
|
||||
-- join on int column, and be empty.
|
||||
SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
ON repartition_udt.pk = repartition_udt_other.pk;
|
||||
-- -- Query that should result in a repartition
|
||||
-- -- join on int column, and be empty.
|
||||
-- SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
-- ON repartition_udt.pk = repartition_udt_other.pk;
|
||||
|
||||
-- Query that should result in a repartition join on UDT column.
|
||||
SET citus.log_multi_join_order = true;
|
||||
-- -- Query that should result in a repartition join on UDT column.
|
||||
-- SET citus.log_multi_join_order = true;
|
||||
|
||||
EXPLAIN (COSTS OFF)
|
||||
SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
ON repartition_udt.udtcol = repartition_udt_other.udtcol
|
||||
WHERE repartition_udt.pk > 1;
|
||||
-- EXPLAIN (COSTS OFF)
|
||||
-- SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
-- ON repartition_udt.udtcol = repartition_udt_other.udtcol
|
||||
-- WHERE repartition_udt.pk > 1;
|
||||
|
||||
SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
ON repartition_udt.udtcol = repartition_udt_other.udtcol
|
||||
WHERE repartition_udt.pk > 1
|
||||
ORDER BY repartition_udt.pk;
|
||||
-- SELECT * FROM repartition_udt JOIN repartition_udt_other
|
||||
-- ON repartition_udt.udtcol = repartition_udt_other.udtcol
|
||||
-- WHERE repartition_udt.pk > 1
|
||||
-- ORDER BY repartition_udt.pk;
|
||||
|
||||
\c - - - :worker_1_port
|
||||
\c - - - :worker_2_port
|
||||
|
|
Loading…
Reference in New Issue