citus/src/test/regress/expected
Hadi Moshayedi 97cba2d5b6 Implements write state management for tuple inserts.
TableAM API doesn't allow us to pass around a state variable along all of the tuple inserts belonging to the same command. We require this in columnar store, since we batch them, and when we have enough rows we flush them as stripes.

To do that, we keep a (relfilenode) -> stack of (subxact id, TableWriteState) global mapping.

**Inserts**

Whenever we want to insert a tuple, we look up for the relation's relfilenode in this mapping. If top of the stack matches current subtransaction, we us the existing TableWriteState. Otherwise, we allocate a new TableWriteState and push it on top of stack.

**(Sub)Transaction Commit/Aborts**

When the subtransaction or transaction is committed, we flush and pop all entries matching current SubTransactionId.

When the subtransaction or transaction is committed, we pop all entries matching current SubTransactionId and discard them without flushing.

**Reads**

Since we might have unwritten rows which needs to be read by a table scan, we flush write states on SELECTs. Since flushing the write state of upper transactions in a subtransaction will cause metadata being written in wrong subtransaction, we ERROR out if any of the upper subtransactions have unflushed rows.

**Table Drops**

We record in which subtransaction the table was dropped. When committing a subtransaction in which table was dropped, we propagate the drop to upper transaction. When aborting a subtransaction in which table was dropped, we mark table as not deleted.
2020-11-17 12:07:16 -08:00
..
.gitignore make tests run 2020-11-17 18:55:35 +01:00
adaptive_executor.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
adaptive_executor_repartition.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
add_coordinator.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
aggregate_support.out Distribute custom aggregates with multiple arguments (#4047) 2020-07-24 15:16:00 -07:00
alter_role_propagation.out Accept list of values in a supported ALTER ROLE .. SET statement 2020-07-21 03:49:57 +03:00
am_alter.out make tests run 2020-11-17 18:55:35 +01:00
am_analyze.out make tests run 2020-11-17 18:55:35 +01:00
am_clean.out move columnar test files 2020-11-17 18:55:34 +01:00
am_drop.out make tests run 2020-11-17 18:55:35 +01:00
am_functions.out make tests run 2020-11-17 18:55:35 +01:00
am_insert.out make tests run 2020-11-17 18:55:35 +01:00
am_join.out make tests run 2020-11-17 18:55:35 +01:00
am_query.out make tests run 2020-11-17 18:55:35 +01:00
am_recursive.out Implements write state management for tuple inserts. 2020-11-17 12:07:16 -08:00
am_rollback.out Implements write state management for tuple inserts. 2020-11-17 12:07:16 -08:00
am_tableoptions.out make tests run 2020-11-17 18:55:35 +01:00
am_transactions.out Implements write state management for tuple inserts. 2020-11-17 12:07:16 -08:00
am_trigger.out Implements write state management for tuple inserts. 2020-11-17 12:07:16 -08:00
am_truncate.out make tests run 2020-11-17 18:55:35 +01:00
am_truncate_0.out make tests run 2020-11-17 18:55:35 +01:00
am_vacuum.out make tests run 2020-11-17 18:55:35 +01:00
am_vacuum_vs_insert.out Implements write state management for tuple inserts. 2020-11-17 12:07:16 -08:00
am_write_concurrency.out fix style 2020-11-17 18:55:35 +01:00
anonymous_columns.out fix sorting on string litteral (#4045) 2020-07-20 17:39:27 +02:00
base_enable_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
binary_protocol.out Fix EXPLAIN ANALYZE received data counter issues (#3917) 2020-06-17 11:33:38 +02:00
bool_agg.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
ch_bench_having.out normalize some output and sort test result 2020-08-04 15:18:27 +03:00
ch_bench_having_mx.out sort result in ch_bench_having_mx test 2020-08-04 15:10:22 +03:00
ch_bench_subquery_repartition.out Make tests fail with a useful error message 2020-01-16 18:30:30 +01:00
chbenchmark_all_queries.out Replace flaky repartition analyze test with a non flaky one (#3950) 2020-06-25 15:19:15 +02:00
citus_local_table_triggers.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
citus_local_tables.out Honor error message conventions 2020-11-03 18:11:18 +03:00
citus_local_tables_mx.out Add udf tests with citus local tables (#4154) 2020-09-11 12:36:53 +03:00
citus_local_tables_queries.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
citus_local_tables_queries_mx.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
citus_table_triggers.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
coordinator_evaluation.out Fix a crash with inserting domain composite types in coord. evaluation (#4231) 2020-10-13 14:19:59 +03:00
coordinator_evaluation_modify.out Rename master evaluation to coordinator evaluation 2020-07-07 10:37:41 +02:00
coordinator_evaluation_select.out Rename master evaluation to coordinator evaluation 2020-07-07 10:37:41 +02:00
coordinator_shouldhaveshards.out Add orderbys to some tests (#4162) 2020-09-14 16:59:22 +02:00
create.out fix style 2020-11-17 18:55:35 +01:00
cross_join.out Add regression tests for outer/cross JOINs 2020-10-14 15:17:30 +02:00
cte_inline.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
cte_inline_0.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
cte_nested_modification.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
cte_prepared_modify.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
custom_aggregate_support.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
custom_aggregate_support_0.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
custom_aggregate_support_1.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
disable_object_propagation.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
distributed_collations.out Remove flag from 2020-07-20 12:45:05 +02:00
distributed_collations_conflict.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
distributed_functions.out Allow distribution of functions that read from reference tables 2020-09-01 07:28:34 +03:00
distributed_functions_conflict.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
distributed_intermediate_results.out Test RedistributeTaskListResult 2020-01-09 23:47:25 -08:00
distributed_procedure.out not wait forever for metadata sync in tests (#3760) 2020-05-14 10:51:24 +03:00
distributed_types.out Disallow field indirection in INSERT/UPDATE queries (#4241) 2020-10-14 14:11:59 +03:00
distributed_types_conflict.out Adds public host to only hyperscale tests 2020-04-10 15:54:47 +03:00
distributed_types_xact_add_enum_value.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
distributed_types_xact_add_enum_value_0.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
dml_recursive.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
ensure_no_intermediate_data_leak.out test that we don't leak intermediate schemas (#3737) 2020-04-09 12:17:41 +03:00
ensure_no_shared_connection_leak.out Temporarily disable connection leak tests that fail a lot (#3911) 2020-06-16 13:48:48 +02:00
escape_extension_name.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
escape_extension_name_0.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
expression_reference_join.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_1pc_copy_append.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_1pc_copy_hash.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_add_disable_node.out Not allow removing a single node with ref tables (#4127) 2020-09-18 15:35:59 +03:00
failure_connection_establishment.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_copy_on_hash.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_copy_to_reference.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_create_distributed_table_non_empty.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_create_index_concurrently.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_create_reference_table.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_create_table.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_cte_subquery.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_ddl.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_distributed_results.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_insert_select_pushdown.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_insert_select_repartition.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_insert_select_via_coordinator.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_multi_dml.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_multi_row_insert.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_multi_shard_update_delete.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_mx_metadata_sync.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_parallel_connection.out Add failure test for parallel reference table join 2020-02-03 19:35:07 +01:00
failure_ref_tables.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_replicated_partitions.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_savepoints.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_setup.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_single_mod.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_single_select.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_test_helpers.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_truncate.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_vacuum.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
failure_vacuum_1.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
fast_path_router_modify.out Remove flag from 2020-07-20 12:45:05 +02:00
fdw_alter.out make tests run 2020-11-17 18:55:35 +01:00
fdw_analyze.out make tests run 2020-11-17 18:55:35 +01:00
fdw_clean.out move columnar test files 2020-11-17 18:55:34 +01:00
fdw_drop.out make tests run 2020-11-17 18:55:35 +01:00
fdw_functions.out make tests run 2020-11-17 18:55:35 +01:00
fdw_insert.out make tests run 2020-11-17 18:55:35 +01:00
fdw_query.out make tests run 2020-11-17 18:55:35 +01:00
fdw_rollback.out make tests run 2020-11-17 18:55:35 +01:00
fdw_truncate.out make tests run 2020-11-17 18:55:35 +01:00
fdw_truncate_0.out make tests run 2020-11-17 18:55:35 +01:00
follower_single_node.out address feedback 2020-07-13 19:45:02 +03:00
foreign_key_restriction_enforcement.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
foreign_key_to_reference_table.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
geqo.out Turn RelOptInfos to only used field of them, relids, to be able to copy 2020-10-22 13:42:28 +03:00
grant_on_schema_propagation.out Refactor alter role to work on distributed roles (#3739) 2020-04-16 12:23:27 +02:00
having_subquery.out Refactor master query to be planned by postgres' planner (#3326) 2020-02-25 14:39:56 +01:00
insert_select_connection_leak.out Shorten insert_select_connection_leak_test 2020-09-18 10:07:15 +03:00
insert_select_into_local_table.out Insert Select Into Local Table (#3870) 2020-06-12 17:06:31 +03:00
insert_select_repartition.out Refactor the functions that return OID lists for citus tables 2020-09-18 16:42:46 +03:00
intermediate_result_pruning.out Loosen the requirement to pushdown a subquery with ref tables (#4110) 2020-08-14 12:11:15 +03:00
intermediate_results.out Remove flag from 2020-07-20 12:45:05 +02:00
isolation_add_node_vs_reference_table_operations.out GUC for replicate reference tables on activate. 2020-04-08 12:42:45 -07:00
isolation_add_remove_node.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_append_copy_vs_all.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
isolation_cancellation.out Add a CI check to see if all tests are part of a schedule (#3959) 2020-07-03 11:34:55 +02:00
isolation_citus_dist_activity.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_cluster_management.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_concurrent_dml.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_copy_placement_vs_copy_placement.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_copy_placement_vs_modification.out Tests for master_copy_shard_placement 2020-03-23 08:33:55 -07:00
isolation_copy_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_create_citus_local_table.out Not allow removing a single node with ref tables (#4127) 2020-09-18 15:35:59 +03:00
isolation_create_distributed_table.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_create_restore_point.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_create_table_vs_add_remove_node.out Not allow removing a single node with ref tables (#4127) 2020-09-18 15:35:59 +03:00
isolation_data_migration.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_ddl_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_delete_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_dis2ref_foreign_keys_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_distributed_deadlock_detection.out Re-enable isolation test for reference tables + distributed deadlock detection 2020-04-24 11:53:03 +02:00
isolation_distributed_transaction_id.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_dml_vs_repair.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_drop_alter_index_select_for_update_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_drop_shards.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_drop_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_dump_global_wait_edges.out Detect deadlocks in replicate_reference_tables() 2020-04-15 11:06:18 -07:00
isolation_dump_local_wait_edges.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_ensure_dependency_activate_node.out Refactor alter role to work on distributed roles (#3739) 2020-04-16 12:23:27 +02:00
isolation_extension_commands.out Refactor alter role to work on distributed roles (#3739) 2020-04-16 12:23:27 +02:00
isolation_get_all_active_transactions.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_get_distributed_wait_queries_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_hash_copy_vs_all.out replace task-tracker with adaptive in tests 2020-07-21 16:21:01 +03:00
isolation_insert_select_conflict.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_insert_select_repartition.out Isolation tests for INSERT/SELECT repartition 2020-01-16 23:24:52 -08:00
isolation_insert_select_vs_all.out Insert Select Into Local Table (#3870) 2020-06-12 17:06:31 +03:00
isolation_insert_select_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_insert_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_insert_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_insert_vs_vacuum.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_master_append_table.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_master_apply_delete.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_master_update_node.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_master_update_node_0.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_modify_with_subquery_vs_dml.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_multi_shard_modify_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_multiuser_locking.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_partitioned_copy_vs_all.out replace task-tracker with adaptive in tests 2020-07-21 16:21:01 +03:00
isolation_progress_monitoring.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_range_copy_vs_all.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
isolation_ref2ref_foreign_keys.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_ref2ref_foreign_keys_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_ref_select_for_update_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_ref_update_delete_upsert_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_reference_copy_vs_all.out replace task-tracker with adaptive in tests 2020-07-21 16:21:01 +03:00
isolation_reference_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_replace_wait_function.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_replicate_reference_tables_to_coordinator.out Re-enable isolation test for reference tables + distributed deadlock detection 2020-04-24 11:53:03 +02:00
isolation_select_for_update.out Remove flag from 2020-07-20 12:45:05 +02:00
isolation_select_vs_all.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
isolation_select_vs_all_on_mx.out Support use of binary protocol in between nodes (#3877) 2020-06-12 15:02:51 +02:00
isolation_shouldhaveshards.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_transaction_recovery.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_truncate_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_truncate_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_undistribute_table.out Honor error message conventions 2020-11-03 18:11:18 +03:00
isolation_update_delete_upsert_vs_all_on_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_update_node.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_update_node_lock_writes.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_update_vs_all.out Allow routing modifying CTEs 2020-06-11 15:14:06 +00:00
isolation_upsert_vs_all.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
isolation_validate_vs_insert.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
join.out Fix incorrect join related fields (#4242) 2020-10-19 18:28:39 +03:00
limit_intermediate_size.out Local execution considers intermediate result size limit 2020-10-15 17:18:55 +02:00
local_shard_copy.out Add orderbys to some tests (#4162) 2020-09-14 16:59:22 +02:00
local_shard_execution.out Fix incorrect join related fields (#4242) 2020-10-19 18:28:39 +03:00
local_shard_utility_command_execution.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
locally_execute_intermediate_results.out Handle joins between local/reference/cte via router planner 2020-06-12 18:36:01 -07:00
master_copy_shard_placement.out Test master_copy_shard_placement errors on foreign constraints 2020-04-13 12:45:27 -07:00
materialized_view.out Do not rely on set_rel_pathlist_hook for finding local relations 2020-11-06 11:14:30 +01:00
mixed_relkind_tests.out Fix a flaky test in mixed_relkind_tests (#4300) 2020-11-06 14:53:30 +03:00
multi_703_upgrade.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_agg_approximate_distinct.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_agg_approximate_distinct_0.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_alter_table_add_constraints.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
multi_array_agg.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_average_expression.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_basic_queries.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_behavioral_analytics_basics.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_behavioral_analytics_single_shard_queries.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_binary_master_copy_format.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_cache_invalidation.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_citus_tools.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_cluster_management.out Not allow removing a single node with ref tables (#4127) 2020-09-18 15:35:59 +03:00
multi_colocated_shard_transfer.out Rename RelayFileState to ShardState 2020-01-12 05:57:53 +00:00
multi_colocation_utils.out Add IsCitusTable check to citus table utilities (#4028) 2020-07-14 18:29:33 +03:00
multi_complex_expressions.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_complex_expressions_0.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_count_type_conversion.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_create_fdw.out Use citus.next_shard_id where practical in regression tests 2017-11-15 10:12:05 +01:00
multi_create_shards.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_create_table.out Prevent citus local table creation from a catalog table (#4158) 2020-09-15 14:30:48 +03:00
multi_create_table_constraints.out Adds public host to only hyperscale tests 2020-04-10 15:54:47 +03:00
multi_create_table_new_features.out Add a CI check to see if all tests are part of a schedule (#3959) 2020-07-03 11:34:55 +02:00
multi_create_table_superuser.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
multi_cross_shard.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_data_types.out Normalize Output:.. since it changes with pg13 2020-08-04 15:38:13 +03:00
multi_deparse_function.out Propagate DROP ROUTINE, ALTER ROUTINE 2020-01-13 15:37:46 +00:00
multi_deparse_procedure.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_deparse_shard_query.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_distributed_transaction_id.out Adds public host to only hyperscale tests 2020-04-10 15:54:47 +03:00
multi_distribution_metadata.out Rename RelayFileState to ShardState 2020-01-12 05:57:53 +00:00
multi_drop_extension.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_dropped_column_aliases.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_explain.out Normalize partitioned table aliases in explain output (#4295) 2020-11-06 10:44:01 +03:00
multi_extension.out add extra output for multi_extension targeting pg11 2020-11-17 19:01:54 +01:00
multi_extension_0.out add extra output for multi_extension targeting pg11 2020-11-17 19:01:54 +01:00
multi_follower_configure_followers.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_follower_dml.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
multi_follower_sanity_check.out Add regression tests for follower clusters 2017-08-12 12:05:56 +02:00
multi_follower_select_statements.out add multi follower repartition tests 2020-07-13 19:50:50 +03:00
multi_foreign_key.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
multi_foreign_key_relation_graph.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_function_evaluation.out citus_evaluate_expression: call expand_function_arguments beforehand to avoid segfaulting on implicit parameters 2020-06-23 18:06:46 +00:00
multi_function_in_join.out Add alternative output for multi_function_in_join 2020-08-04 15:18:27 +03:00
multi_function_in_join_0.out Add alternative output for multi_function_in_join 2020-08-04 15:18:27 +03:00
multi_generate_ddl_commands.out propagation of CHECK statements to workers with parentheses (#4039) 2020-07-27 15:08:37 +03:00
multi_hash_pruning.out Remove flag from 2020-07-20 12:45:05 +02:00
multi_having_pushdown.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_index_statements.out Switch to sequential execution if the index name is long (#4209) 2020-10-02 13:39:34 +03:00
multi_insert_conflict.out Move more from insert_select_executor to insert_select_planner 2020-06-26 08:08:26 -07:00
multi_insert_select.out Replace worker_hash calls with partkey IS NOT NULL filters 2020-10-02 18:16:24 +03:00
multi_insert_select_conflict.out Move more from insert_select_executor to insert_select_planner 2020-06-26 08:08:26 -07:00
multi_insert_select_non_pushable_queries.out Move more from insert_select_executor to insert_select_planner 2020-06-26 08:08:26 -07:00
multi_insert_select_window.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
multi_join_order_additional.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_join_order_tpch_repartition.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_join_order_tpch_small.out Refactor master query to be planned by postgres' planner (#3326) 2020-02-25 14:39:56 +01:00
multi_join_pruning.out Refactor master query to be planned by postgres' planner (#3326) 2020-02-25 14:39:56 +01:00
multi_json_agg.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_json_object_agg.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_jsonb_agg.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_jsonb_object_agg.out Implement pulling up rows to coordinator when aggregates cannot be pushed down. Enabled by default 2020-01-07 01:16:04 +00:00
multi_limit_clause.out Correctly handle non-constant LIMIT/OFFSET clauses 2020-04-09 19:59:50 +00:00
multi_limit_clause_approximate.out Expand the set of aggregates which cannot have LIMIT approximated 2020-01-30 17:45:18 +00:00
multi_master_protocol.out Normalize tests: pg12 changes 2020-01-06 09:32:03 +01:00
multi_metadata_access.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_metadata_attributes.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_metadata_sync.out Create sequence dependency during metadata syncing 2020-10-06 10:57:39 +02:00
multi_modifications.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
multi_modifying_xacts.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
multi_multiuser.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_add_coordinator.out Allow distribution of functions that read from reference tables 2020-09-01 07:28:34 +03:00
multi_mx_call.out Allow distribution of functions that read from reference tables 2020-09-01 07:28:34 +03:00
multi_mx_create_table.out Implement "citus local table" creation logic 2020-09-09 11:50:48 +03:00
multi_mx_ddl.out Fix distributing tables owned by extensions 2020-09-10 04:46:11 +02:00
multi_mx_explain.out Normalize Output:.. since it changes with pg13 2020-08-04 15:38:13 +03:00
multi_mx_function_call_delegation.out Allow distribution of functions that read from reference tables 2020-09-01 07:28:34 +03:00
multi_mx_function_table_reference.out Allow distribution of functions that read from reference tables 2020-09-01 07:28:34 +03:00
multi_mx_hide_shard_names.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_insert_select_repartition.out enable local execution in INSERT..SELECT and add more tests 2020-03-18 09:34:39 +03:00
multi_mx_metadata.out Remove master_drop_sequences 2020-10-06 10:57:33 +02:00
multi_mx_modifications.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
multi_mx_modifications_to_reference_tables.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_modifying_xacts.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
multi_mx_node_metadata.out not wait forever for metadata sync in tests (#3760) 2020-05-14 10:51:24 +03:00
multi_mx_partitioning.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
multi_mx_reference_table.out Remove flag from 2020-07-20 12:45:05 +02:00
multi_mx_repartition_join_w1.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_repartition_join_w2.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_repartition_udt_prepare.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_mx_repartition_udt_w1.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_repartition_udt_w2.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_router_planner.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_mx_schema_support.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_mx_tpch_query1.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query3.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query6.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query7.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query7_nested.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query10.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query12.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query14.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_tpch_query19.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_mx_transaction_recovery.out enable local execution in INSERT..SELECT and add more tests 2020-03-18 09:34:39 +03:00
multi_mx_truncate_from_worker.out use local execution within transaction block (#3714) 2020-04-09 12:41:58 +03:00
multi_name_lengths.out Adds public host to only hyperscale tests 2020-04-10 15:54:47 +03:00
multi_name_resolution.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_null_minmax_value_pruning.out Remove flag from 2020-07-20 12:45:05 +02:00
multi_orderby_limit_pushdown.out Refactor master query to be planned by postgres' planner (#3326) 2020-02-25 14:39:56 +01:00
multi_partition_pruning.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_partitioning.out Normalize partitioned table aliases in explain output (#4295) 2020-11-06 10:44:01 +03:00
multi_partitioning_utils.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_prepare_plsql.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_prepare_sql.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_prune_shard_list.out Coerce types properly for INSERT 2020-06-10 10:40:28 +02:00
multi_query_directory_cleanup.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_query_directory_cleanup_0.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_read_from_secondaries.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
multi_real_time_transaction.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
multi_reference_table.out Adapt other cache entry changes for citus local tables 2020-09-09 11:50:55 +03:00
multi_remove_node_reference_table.out Not allow removing a single node with ref tables (#4127) 2020-09-18 15:35:59 +03:00
multi_repair_shards.out Rename RelayFileState to ShardState 2020-01-12 05:57:53 +00:00
multi_repartition_join_planning.out remove task-tracker in comments, documentation 2020-07-21 16:21:01 +03:00
multi_repartition_join_pruning.out remove task-tracker in comments, documentation 2020-07-21 16:21:01 +03:00
multi_repartition_join_ref.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_repartition_join_task_assignment.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_repartition_udt.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_repartitioned_subquery_udf.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_replicate_reference_table.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
multi_router_planner.out Disallow volatile functions on single shard update queries 2020-09-29 15:40:21 +03:00
multi_router_planner_fast_path.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_row_insert.out Add ORDER BY to multi_row_insert.sql 2020-01-16 15:20:39 -08:00
multi_row_router_insert.out Fix multi-row & router INSERT crash with local exec. when def. cols not specified (#4197) 2020-10-05 10:45:17 +03:00
multi_schema_support.out Fixes the non existing table bug (#4058) 2020-07-23 18:01:21 +03:00
multi_select_distinct.out update some tests 2020-08-04 15:18:27 +03:00
multi_select_distinct_1.out update some tests 2020-08-04 15:18:27 +03:00
multi_select_for_update.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_shard_modify.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
multi_shard_update_delete.out Disallow volatile functions on single shard update queries 2020-09-29 15:40:21 +03:00
multi_simple_queries.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
multi_simple_queries_0.out remove task-tracker in comments, documentation 2020-07-21 16:21:01 +03:00
multi_single_relation_subquery.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_size_queries.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_sql_function.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_subquery.out Hide `citus.subquery_pushdown` flag and NOTICE when enabled (#4124) 2020-08-28 14:53:09 +02:00
multi_subquery_behavioral_analytics.out Hide `citus.subquery_pushdown` flag and NOTICE when enabled (#4124) 2020-08-28 14:53:09 +02:00
multi_subquery_complex_queries.out Hide `citus.subquery_pushdown` flag and NOTICE when enabled (#4124) 2020-08-28 14:53:09 +02:00
multi_subquery_complex_reference_clause.out Add regression tests for outer/cross JOINs 2020-10-14 15:17:30 +02:00
multi_subquery_in_where_clause.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
multi_subquery_in_where_reference_clause.out Loosen the requirement to pushdown a subquery with ref tables (#4110) 2020-08-14 12:11:15 +03:00
multi_subquery_misc.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_subquery_union.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_subquery_window_functions.out Normalize Output:.. since it changes with pg13 2020-08-04 15:38:13 +03:00
multi_subtransactions.out Fix Subtransaction memory leak 2020-07-09 12:33:39 -07:00
multi_table_ddl.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_task_assignment_policy.out Remove flag from 2020-07-20 12:45:05 +02:00
multi_task_string_size.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_test_catalog_views.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_test_helpers.out Fix relkind checks in planner for relkinds other than RELKIND_RELATION (#4294) 2020-11-05 14:21:02 +03:00
multi_test_helpers_superuser.out Fix Subtransaction memory leak 2020-07-09 12:33:39 -07:00
multi_tpch_query1.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query3.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query6.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query7.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query7_nested.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query10.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query12.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query14.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_tpch_query19.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_transaction_recovery.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_transactional_drop_shards.out GUC for replicate reference tables on activate. 2020-04-08 12:42:45 -07:00
multi_truncate.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
multi_unsupported_worker_operations.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_upgrade_reference_table.out Remove todo from reference_table_utils 2020-04-08 12:46:55 -07:00
multi_upsert.out Merge remote-tracking branch 'origin/master' into normalized-test-output 2020-01-06 09:36:04 +01:00
multi_utilities.out Adds public host to only hyperscale tests 2020-04-10 15:54:47 +03:00
multi_utility_statements.out Defer shard pruning for fast-path router queries to execution 2020-01-16 16:59:36 +01:00
multi_utility_warnings.out Add the necessary changes for rebalance strategies on enterprise (#3325) 2019-12-19 15:23:08 +01:00
multi_view.out Support reference table view in reference table modification 2020-10-16 11:31:24 +02:00
multi_working_columns.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
mx_foreign_key_to_reference_table.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
node_conninfo_reload.out Improve connection error message from the worker nodes 2020-04-20 13:32:55 +02:00
non_colocated_join_order.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
non_colocated_leaf_subquery_joins.out Update regression tests-1 2020-01-16 12:28:15 +01:00
non_colocated_subquery_joins.out Remove flag from 2020-07-20 12:45:05 +02:00
null_parameters.out not log in debug level in null parameters (#3718) 2020-04-06 17:59:46 +03:00
partitioned_intermediate_results.out Partitioned task list results. 2020-01-09 10:32:58 -08:00
pg12.out Table access method support for distributed tables 2020-10-16 12:02:25 -07:00
pg12_1.out Create a test 'pg12' for pg12 features & error on unsupported new features 2019-08-22 19:30:56 +00:00
pg13.out Add subplan test with insert 2020-10-01 13:58:55 +03:00
pg13_0.out add alternative out for pg13 test 2020-08-04 15:38:13 +03:00
pg13_with_ties.out Honor error message conventions 2020-11-03 18:11:18 +03:00
pg13_with_ties_0.out Adds support for WITH TIES option 2020-10-12 19:34:18 +03:00
pg_dump.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
propagate_extension_commands.out add output for pg13 for propagate extension commands 2020-08-04 15:18:27 +03:00
propagate_extension_commands_1.out add output for pg13 for propagate extension commands 2020-08-04 15:18:27 +03:00
propagate_set_commands.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
recursive_dml_queries_mx.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
recursive_dml_with_different_planners_executors.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
recursive_view_local_table.out Do not rely on set_rel_pathlist_hook for finding local relations 2020-11-06 11:14:30 +01:00
ref_citus_local_fkeys.out Extend citus local table utility command support 2020-09-09 11:50:55 +03:00
relation_access_tracking.out Allow routing modifying CTEs 2020-06-11 15:14:06 +00:00
remove_coordinator.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
replicate_reference_tables_to_coordinator.out Fix create index concurrently crash with local execution 2020-09-25 11:49:09 +02:00
replicated_partitioned_table.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
rollback_to_savepoint.out Fix assertion error when rolling back to savepoint (#3868) 2020-06-30 11:31:46 +02:00
row_types.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
sequential_modifications.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
set_operation_and_local_tables.out Remove flag from 2020-07-20 12:45:05 +02:00
set_operations.out Remove flag from 2020-07-20 12:45:05 +02:00
set_role_in_transaction.out Implement shared connection count reservation & enable `citus.max_shared_pool_size` for COPY 2020-08-03 18:51:40 +02:00
shared_connection_stats.out Implement shared connection count reservation & enable `citus.max_shared_pool_size` for COPY 2020-08-03 18:51:40 +02:00
shared_connection_waits.out Throttle connections to the worker nodes 2020-04-14 10:27:48 +02:00
single_hash_repartition_join.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
single_node.out Honor error message conventions 2020-11-03 18:11:18 +03:00
sql_procedure.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
sqlancer_failures.out Add intermediate result tests with unsupported outer joins (#4262) 2020-10-20 12:11:18 +03:00
sqlsmith_failures.out Fix for pruned target list entries (#3818) 2020-05-06 13:56:02 +02:00
ssl_by_default.out Use Microsoft approved cipher string (#3639) 2020-03-24 15:51:44 +01:00
statement_cancel_error_message.out Fix wrong cancellation message about distributed deadlocks (#3956) 2020-06-30 14:57:46 +02:00
subqueries_deep.out Add support for window functions on coordinator 2020-03-25 15:31:20 +00:00
subqueries_not_supported.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
subquery_and_cte.out Loosen the requirement to pushdown a subquery with ref tables (#4110) 2020-08-14 12:11:15 +03:00
subquery_basics.out Improve the relation restriction counters 2020-10-19 08:51:16 +02:00
subquery_complex_target_list.out Normalize Output:.. since it changes with pg13 2020-08-04 15:38:13 +03:00
subquery_executors.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
subquery_in_where.out Remove assertion for subqueries in WHERE clause ANDed with FALSE 2020-05-04 10:52:15 +02:00
subquery_local_tables.out Add test for issue, does not reproduce issue 2020-02-18 23:45:17 +00:00
subquery_partitioning.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
subquery_prepared_statements.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
subquery_view.out Update regression tests-2 2020-01-16 12:28:15 +01:00
tableam.out Set explicit transfer_mode in tableam tests 2020-10-16 12:40:37 -07:00
tableam_0.out Table access method support for distributed tables 2020-10-16 12:02:25 -07:00
task_tracker_assign_task.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
task_tracker_cleanup_job.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
task_tracker_create_table.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
task_tracker_partition_task.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
tdigest_aggregate_support.out Normalize Output:.. since it changes with pg13 2020-08-04 15:38:13 +03:00
tdigest_aggregate_support_0.out Feature: tdigest aggregate (#3897) 2020-06-12 13:50:28 +02:00
undistribute_table.out Honor error message conventions 2020-11-03 18:11:18 +03:00
upgrade_basic_after.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
upgrade_basic_before.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_distributed_function_after.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_distributed_function_before.out not wait forever in upgrade distributed function before (#3731) 2020-04-10 09:43:42 +03:00
upgrade_list_citus_objects.out create missing objects during upgrade path 2020-11-17 19:01:51 +01:00
upgrade_list_citus_objects_0.out create missing objects during upgrade path 2020-11-17 19:01:51 +01:00
upgrade_pg_dist_object_test_after.out Refactor alter role to work on distributed roles (#3739) 2020-04-16 12:23:27 +02:00
upgrade_pg_dist_object_test_before.out Introduce objects to dist. infrastructure when updating Citus (#3477) 2020-02-07 18:07:59 +03:00
upgrade_rebalance_strategy_after.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_rebalance_strategy_before.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_ref2ref_after.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_ref2ref_before.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_type_after.out upgrade_type_after: ORDER BY 2020-04-01 01:07:21 +00:00
upgrade_type_before.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
validate_constraint.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
window_functions.out Avoid setting hasWindowFuncs true after window functions have been optimized out of query 2020-04-17 12:22:48 +00:00
with_basics.out Add new regression tests 2020-04-07 17:06:55 +02:00
with_dml.out Update with_dml 2020-02-03 13:13:30 -08:00
with_executors.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
with_join.out Update regression tests-2 2020-01-16 12:28:15 +01:00
with_modifying.out Apply planner changes for citus local tables 2020-09-09 11:51:18 +03:00
with_nested.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
with_partitioning.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
with_prepare.out Allow routing modifying CTEs 2020-06-11 15:14:06 +00:00
with_set_operations.out Update regression tests-2 2020-01-16 12:28:15 +01:00
with_transactions.out Normalize tests: s/read_intermediate_result\('[0-9]+_/read_intermediate_result('XXX_/g 2020-01-06 09:32:03 +01:00
with_where.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_binary_data_partition.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_create_table.out Use citus.next_shard_id where practical in regression tests 2017-11-15 10:12:05 +01:00
worker_hash_partition.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_hash_partition_complex.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_merge_hash_files.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_merge_range_files.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_null_data_partition.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_range_partition.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_range_partition_complex.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
worker_remove_files.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00