citus/src/test/regress/expected
Mehmet YILMAZ acd7b1e690
PG17 compatibility: Fix Test Failure in local_dist_join_mixed (#7731)
PostgreSQL 16 adds an extra condition (id IS NOT NULL) to the subquery.
This condition is likely used to ensure that no null values are
processed in the subquery. Instead of using the condition id IS NOT
NULL, PostgreSQL 17 generates the subplan with a trivial condition
(WHERE true), indicating that it does not need to explicitly check for
non-null values.

PostgreSQL 17 likely includes optimizations to handle null checks more
efficiently. The WHERE (id IS NOT NULL) condition that was present in
PostgreSQL 16 may now be considered redundant by the planner, as it is
implicitly handled by the query execution engine.

https://github.com/postgres/postgres/commit/b262ad44

```diff
 SELECT
        foo1.id
    FROM
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo9,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo8,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo7,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo6,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo5,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo4,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo3,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo2,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo10,
 (SELECT local.id, local.title FROM local, distributed WHERE local.id = distributed.id ) as foo1
 WHERE
  foo1.id =  foo9.id AND
  foo1.id =  foo8.id AND
  foo1.id =  foo7.id AND
  foo1.id =  foo6.id AND
  foo1.id =  foo5.id AND
  foo1.id =  foo4.id AND
  foo1.id =  foo3.id AND
  foo1.id =  foo2.id AND
  foo1.id =  foo10.id AND
  foo1.id =  foo1.id
ORDER BY 1;
...
-DEBUG:  generating subplan XXX_10 for subquery SELECT id FROM local_dist_join_mixed.local WHERE (id IS NOT NULL)
+DEBUG:  generating subplan XXX_10 for subquery SELECT id FROM local_dist_join_mixed.local WHERE true
...
```
2024-12-19 22:21:23 +03:00
..
adaptive_executor.out Use IsMultiStatementTransaction for SELECT .. FOR UPDATE queries (#6288) 2022-09-06 16:38:41 +02:00
adaptive_executor_repartition.out Make citus_stat_tenants work with schema-based tenants. (#6936) 2023-06-13 14:11:45 +03:00
add_coordinator.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
adv_lock_permission.out Add citus.skip_advisory_lock_permission_checks (#6293) 2022-09-05 17:47:41 +02:00
aggregate_support.out Do not override combinefunc of custom aggregates with common names (#6805) 2023-04-03 19:43:09 +02:00
alter_database_owner.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
alter_database_propagation.out Fix bug: alter database shouldn't propagate for undistributed database (#7777) 2024-12-05 13:47:51 +03:00
alter_distributed_table.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
alter_index.out PG17 compatibility: Fix -1/Null diff in attstattarget test output (#7749) 2024-11-17 23:43:39 +03:00
alter_role_propagation.out Fixes empty password issue (#6417) 2022-10-11 15:56:44 +03:00
alter_table_add_column.out Fix crash caused by some form of ALTER TABLE ADD COLUMN statements. (#7522) 2024-04-17 10:26:50 +02:00
alter_table_set_access_method.out PG16 compatibility - some test outputs (#7100) 2023-08-04 13:03:15 +03:00
alter_table_single_shard_table.out Call null-shard-key tables as single-shard distributed tables in code 2023-05-03 17:02:43 +03:00
anonymous_columns.out fix sorting on string litteral (#4045) 2020-07-20 17:39:27 +02:00
arbitrary_configs_alter_table_add_constraint_without_name.out Enable PRIMARY KEY generation via ALTER TABLE even if the constraint name is not provided (#6520) 2022-12-16 20:34:00 +03:00
arbitrary_configs_alter_table_add_constraint_without_name_create.out Enable PRIMARY KEY generation via ALTER TABLE even if the constraint name is not provided (#6520) 2022-12-16 20:34:00 +03:00
arbitrary_configs_recurring_outer_join.out Add new regression tests 2022-12-07 18:27:50 +03:00
arbitrary_configs_router.out Add an arbitrary config test heavily based on multi_router_planner_fast_path.sql (#6782) 2023-03-22 10:49:08 +03:00
arbitrary_configs_router_create.out Add an arbitrary config test heavily based on multi_router_planner_fast_path.sql (#6782) 2023-03-22 10:49:08 +03:00
arbitrary_configs_truncate.out Add TRUNCATE arbitrary config tests (#5848) 2022-03-31 14:14:47 +03:00
arbitrary_configs_truncate_cascade.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
arbitrary_configs_truncate_cascade_create.out Add TRUNCATE arbitrary config tests (#5848) 2022-03-31 14:14:47 +03:00
arbitrary_configs_truncate_create.out Add TRUNCATE arbitrary config tests (#5848) 2022-03-31 14:14:47 +03:00
arbitrary_configs_truncate_partition.out Add TRUNCATE arbitrary config tests (#5848) 2022-03-31 14:14:47 +03:00
arbitrary_configs_truncate_partition_create.out Add TRUNCATE arbitrary config tests (#5848) 2022-03-31 14:14:47 +03:00
auto_undist_citus_local.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
background_rebalance.out Run replicate_reference_tables background task as superuser. (#6930) 2023-05-18 23:46:32 +03:00
background_rebalance_parallel.out Remove flaky rebalance plan from test (#6990) 2023-06-09 15:59:30 +03:00
background_task_queue_monitor.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
base_enable_mx.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
binary_protocol.out Enable binary logical replication for shard moves (#6017) 2022-08-23 16:38:00 +02:00
bool_agg.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
ch_bench_having.out PG17 compatibility: add helper function for EXPLAIN diffs in scalar subquery output (#7757) 2024-11-21 22:22:30 +03:00
ch_bench_having_mx.out PG17 compatibility: add helper function for EXPLAIN diffs in scalar subquery output (#7757) 2024-11-21 22:22:30 +03:00
ch_bench_subquery_repartition.out Fix typos. Spurred spotting "connectios" in logs 2021-10-25 13:54:09 +00:00
ch_benchmarks_1.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
ch_benchmarks_2.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
ch_benchmarks_3.out Fix typos. Spurred spotting "connectios" in logs 2021-10-25 13:54:09 +00:00
ch_benchmarks_4.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
ch_benchmarks_5.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
ch_benchmarks_6.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
ch_benchmarks_create_load.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
chbenchmark_all_queries.out Replace flaky repartition analyze test with a non flaky one (#3950) 2020-06-25 15:19:15 +02:00
check_cluster_state.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
check_mx.out Drop distributed table on worker with ProcessUtilityParseTree 2022-03-15 17:42:01 +03:00
citus_copy_shard_placement.out Introduce citus_copy_shard_placement UDF with nodeid 2023-01-12 16:57:51 +03:00
citus_depended_object.out added citus_depended_objects udf and HideCitusDependentObjects GUC to hide citus depended objects from pg meta queries (#6055) 2022-07-25 16:43:34 +03:00
citus_drain_node.out Drop SHARD_STATE_TO_DELETE (#6494) 2023-01-03 14:38:16 +03:00
citus_local_dist_joins.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
citus_local_table_triggers.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
citus_local_tables.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
citus_local_tables_ent.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
citus_local_tables_mx.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
citus_local_tables_queries.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
citus_local_tables_queries_0.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
citus_local_tables_queries_mx.out Phase - I: recursively plan non-recurring relations 2022-12-07 18:27:50 +03:00
citus_locks.out Introduce citus_locks view 2022-07-21 03:06:57 +03:00
citus_non_blocking_split_columnar.out Wait for cleanup function (#6549) 2022-12-08 13:19:25 +03:00
citus_non_blocking_split_shard_cleanup.out Wait for cleanup function (#6549) 2022-12-08 13:19:25 +03:00
citus_non_blocking_split_shards.out Exclude-Generated-Columns-In-Copy (#6721) 2023-03-07 18:15:50 +03:00
citus_run_command.out Avoid round trips while fixing index names (#5549) 2021-12-27 10:29:37 +01:00
citus_schema_distribute_undistribute.out ALTER TABLE <tblname> SET SCHEMA <schemaname> for single shard tables (#7004) 2023-06-19 10:21:13 +03:00
citus_schema_move.out Add citus_schema_move() function (#7180) 2023-09-08 12:03:53 +03:00
citus_split_shard_by_split_points.out Exclude-Generated-Columns-In-Copy (#6721) 2023-03-07 18:15:50 +03:00
citus_split_shard_by_split_points_deferred_drop.out Fix flakyness in citus_split_shard_by_split_points_deferred_drop (#6819) 2023-04-04 09:45:48 +02:00
citus_split_shard_by_split_points_failure.out Drop cleanup on failure (#6584) 2022-12-28 15:48:44 +03:00
citus_split_shard_by_split_points_negative.out 'Deferred Drop' and robust 'Shard Cleanup' for Splits. (#6258) 2022-09-06 12:11:20 -07:00
citus_split_shard_columnar_partitioned.out Wait for cleanup function (#6549) 2022-12-08 13:19:25 +03:00
citus_stat_tenants.out Add locking mechanism for tenant monitoring probabilistic approach (#7026) 2023-07-03 13:08:03 +03:00
citus_table_triggers.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
citus_update_table_statistics.out Use citus_shard_sizes in citus_tables (#7018) 2023-07-05 11:40:34 +03:00
clock.out Fix the flaky test in clock.sql 2022-12-07 09:47:35 -08:00
columnar_alter.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
columnar_alter_set_type.out [Columnar] Bugfix for Columnar: options ignored during ALTER TABLE rewrite (#6337) 2022-10-05 11:42:09 -07:00
columnar_analyze.out Columnar: rename files and tests. (#4751) 2021-03-01 08:34:24 -08:00
columnar_chunk_filtering.out PG17 compatibility (#7653): Fix test diffs in columnar schedule (#7768) 2024-12-03 09:14:47 +00:00
columnar_chunk_filtering_0.out PG17 compatibility (#7653): Fix test diffs in columnar schedule (#7768) 2024-12-03 09:14:47 +00:00
columnar_citus_integration.out Specifies that our CustomScan providers support projections (#6244) 2022-08-31 10:48:01 +03:00
columnar_clean.out Columnar: rename files and tests. (#4751) 2021-03-01 08:34:24 -08:00
columnar_copyto.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
columnar_create.out PG16 compatibility: Resolve compilation issues (#7005) 2023-07-21 14:32:37 +03:00
columnar_cursor.out Generate parameterized paths for columnar scans. (#5172) 2021-09-02 22:22:48 -07:00
columnar_data_types.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
columnar_drop.out Support citus_columnar as separate extension (#5911) 2022-07-13 21:08:29 -07:00
columnar_empty.out Remove bogus guc citus.compression (#6142) 2022-08-09 05:21:32 +03:00
columnar_fallback_scan.out PG16 compatibility - some test outputs (#7100) 2023-08-04 13:03:15 +03:00
columnar_first_row_number.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_index_concurrency.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
columnar_indexes.out PG16 compatibility - some test outputs (#7100) 2023-08-04 13:03:15 +03:00
columnar_insert.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_join.out Generate parameterized paths for columnar scans. (#5172) 2021-09-02 22:22:48 -07:00
columnar_load.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
columnar_lz4.out Move columnar test helpers to a separate file (#4908) 2021-04-16 18:56:21 +03:00
columnar_lz4_0.out Move columnar test helpers to a separate file (#4908) 2021-04-16 18:56:21 +03:00
columnar_matview.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_memory.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
columnar_partitioning.out PG16 compatibility - some test outputs (#7100) 2023-08-04 13:03:15 +03:00
columnar_paths.out PG17 compatibility (#7653): Fix test diffs in columnar schedule (#7768) 2024-12-03 09:14:47 +00:00
columnar_paths_0.out PG17 compatibility (#7653): Fix test diffs in columnar schedule (#7768) 2024-12-03 09:14:47 +00:00
columnar_permissions.out Fix flaky clolumnar_permissions test (#6913) 2023-05-09 12:42:37 +02:00
columnar_pg15.out Rename remaining regclass to relation in columnar.options 2022-08-10 15:38:53 +02:00
columnar_pg15_0.out Columnar: support relation options with ALTER TABLE. (#5935) 2022-05-20 08:35:00 -07:00
columnar_query.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
columnar_recursive.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_rollback.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_tableoptions.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
columnar_temp_tables.out Support temporary columnar tables (#4766) 2021-03-12 12:01:36 +03:00
columnar_test_helpers.out Stabilize test helper sql files 2023-07-06 10:47:41 +03:00
columnar_transactions.out Generate parameterized paths for columnar scans. (#5172) 2021-09-02 22:22:48 -07:00
columnar_trigger.out Ignore pl/pgsql line numbers in regression outputs (#4411) 2021-06-17 14:11:17 +03:00
columnar_truncate.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
columnar_types_without_comparison.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
columnar_update_delete.out Columnar: rename files and tests. (#4751) 2021-03-01 08:34:24 -08:00
columnar_vacuum.out Columnar: tighten security and improve visibility. (#5922) 2022-05-20 15:30:31 -07:00
columnar_vacuum_vs_insert.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
columnar_write_concurrency.out Split columnar stripe reservation into two phases (#5188) 2021-09-02 11:49:14 +03:00
columnar_write_concurrency_index.out Split columnar stripe reservation into two phases (#5188) 2021-09-02 11:49:14 +03:00
columnar_zstd.out Columnar: support relation options with ALTER TABLE. (#5935) 2022-05-20 08:35:00 -07:00
columnar_zstd_0.out Move columnar test helpers to a separate file (#4908) 2021-04-16 18:56:21 +03:00
connectivity_checks.out Introduce citus_check_cluster_node_health UDF 2021-12-15 01:41:51 +03:00
coordinator_evaluation.out Prevent crashes on update with returning clauses (#6643) 2023-01-24 20:07:43 +03:00
coordinator_evaluation_modify.out Fix typos in tests that fail on PG15 2022-08-10 22:45:28 +03:00
coordinator_evaluation_select.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
coordinator_shouldhaveshards.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
coordinator_shouldhaveshards_0.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
cpu_priority.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
create_citus_local_table_cascade.out Add missing relation access record for local utility command 2022-07-29 11:36:33 +02:00
create_distributed_table_concurrently.out Make sure to disallow creating a replicated distributed table concurrently (#7219) 2023-10-24 14:04:37 +03:00
create_ref_dist_from_citus_local.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
create_role_propagation.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
create_single_shard_table.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
cross_join.out Phase - I: recursively plan non-recurring relations 2022-12-07 18:27:50 +03:00
cte_inline.out PG17 compatibility: Preserve DEBUG output in cte_inline (#7755) 2024-11-20 00:14:57 +03:00
cte_inline_0.out PG17 compatibility: Preserve DEBUG output in cte_inline (#7755) 2024-11-20 00:14:57 +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
cursors.out Do not execute subplans multiple times with cursors 2020-11-20 10:43:56 +01: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
data_types.out Fixes the type names that start with underscore bug 2022-03-22 14:24:30 +03:00
detect_conn_close.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
detect_conn_close_0.out Detect remotely closed sockets and add a single connection retry in the executor (#6404) 2022-10-14 15:08:49 +02:00
disable_object_propagation.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
distributed_collations.out Adjusts query's CoerceViaIO & RelabelType nodes that are improper for deparsing (#6391) 2023-05-04 16:46:02 +03:00
distributed_collations_conflict.out Smallfix in CreateCollationDDL logic (#6089) 2022-07-27 14:33:31 +03:00
distributed_domain.out Fixes visibility problems with dependency propagation (#7028) 2023-09-05 18:04:16 +03:00
distributed_functions.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
distributed_functions_conflict.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
distributed_intermediate_results.out Test RedistributeTaskListResult 2020-01-09 23:47:25 -08:00
distributed_locks.out Add ORDER BY in pg_locks to avoid output order diffs (#6145) 2022-08-09 06:02:07 +03:00
distributed_planning.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
distributed_planning_create_load.out Fix missing from entry 2021-11-04 18:54:52 +03:00
distributed_procedure.out Propagate create/drop schema commands 2022-02-10 14:58:09 +03:00
distributed_triggers.out Make sure to disallow triggers that depend on extensions (#6399) 2022-11-02 16:27:31 +03:00
distributed_types.out Grammar: it's to its 2022-11-28 20:43:44 +00:00
distributed_types_conflict.out Propagate create/drop schema commands 2022-02-10 14:58:09 +03:00
distributed_types_xact_add_enum_value.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
dml_recursive.out PG17 compatibility: add/fix tests with correlated subqueries that can be pulled to a join (#7745) 2024-11-20 14:51:16 +03:00
drop_column_partitioned_table.out Remove copy into new append shard logic 2021-11-07 21:01:40 +01:00
drop_database.out Stop background daemon before dropping the database (#6688) 2023-02-03 15:15:44 +03:00
drop_partitioned_table.out Hopefully fix flakyeness in drop_partitioned_table (#6270) 2022-08-30 12:21:16 +03:00
dropped_columns_1.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
dropped_columns_create_load.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +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
executor_local_failure.out Improve failure handling of distributed execution (#7090) 2023-08-01 16:47:59 +03:00
expression_reference_join.out Fix typo: longer visible -> no longer visible (#3803) 2020-04-27 16:32:46 +03:00
failure_add_disable_node.out fix 3 flaky tests in failure schedule (#6846) 2023-04-13 13:13:28 +03:00
failure_connection_establishment.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_copy_on_hash.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_copy_to_reference.out Normalize messages from different libpq versions 2022-07-26 01:41:34 +03:00
failure_create_distributed_table_concurrently.out fix 3 flaky tests in failure schedule (#6846) 2023-04-13 13:13:28 +03:00
failure_create_distributed_table_non_empty.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_create_index_concurrently.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_create_reference_table.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
failure_create_table.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_cte_subquery.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_ddl.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_distributed_results.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_failover_to_local_execution.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_insert_select_pushdown.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_insert_select_repartition.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_insert_select_via_coordinator.out Normalize messages from different libpq versions 2022-07-26 01:41:34 +03:00
failure_multi_dml.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_multi_row_insert.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_multi_shard_update_delete.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_mx_metadata_sync.out Normalize messages from different libpq versions 2022-07-26 01:41:34 +03:00
failure_mx_metadata_sync_multi_trans.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_offline_move_shard_placement.out Drop SHARD_STATE_TO_DELETE (#6494) 2023-01-03 14:38:16 +03:00
failure_on_create_subscription.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_online_move_shard_placement.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_parallel_connection.out Fix flakyness in failure_single_select (#6223) 2022-08-22 20:06:33 +02:00
failure_ref_tables.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_replicated_partitions.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_savepoints.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_setup.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
failure_single_mod.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_single_select.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_split_cleanup.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_tenant_isolation.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_tenant_isolation_nonblocking.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_test_helpers.out Stabilize test helper sql files 2023-07-06 10:47:41 +03:00
failure_truncate.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
failure_vacuum.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
fast_path_router_modify.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
fkeys_between_local_ref.out Deparse ALTER TABLE commands if ADD COLUMN is the only subcommand 2023-07-12 18:17:47 +03:00
follower_single_node.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
forcedelegation_functions.out Mark objects as distributed even when pg_dist_node is empty (#6900) 2023-05-16 11:45:42 +03:00
foreign_key_restriction_enforcement.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
foreign_key_to_reference_shard_rebalance.out Fix the incorrect column count after ALTER TABLE, this fixes the bug #7378 (please read the analysis in the bug for more information) 2024-01-24 11:48:06 -08:00
foreign_key_to_reference_table.out Deparse ALTER TABLE commands if ADD COLUMN is the only subcommand 2023-07-12 18:17:47 +03:00
foreign_tables_mx.out Adds test for COPY FROM failure in Citus foreign tables (#7160) 2023-09-01 12:20:07 +03:00
function_create.out Add arbitrary config tests for function DDL statements (#5885) 2022-04-12 16:03:10 +03:00
function_propagation.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
function_with_case_when.out Fix segfault when using certain DO block in function (#7554) 2024-04-17 10:26:50 +02:00
functions.out Add arbitrary config tests for function DDL statements (#5885) 2022-04-12 16:03:10 +03:00
generated_identity.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +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
global_cancel.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
grant_on_database_propagation.out Adds grant/revoke privileges on database propagation (#7109) 2023-08-24 14:43:19 +03:00
grant_on_foreign_server_propagation.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
grant_on_function_propagation.out we consider stat object as invalid if it is not owned by current user (#6130) 2022-08-09 20:59:30 +03:00
grant_on_schema_propagation.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
grant_on_schema_propagation_0.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
grant_on_sequence_propagation.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
having_subquery.out PG17 compatibility: add helper function for EXPLAIN diffs in scalar subquery output (#7757) 2024-11-21 22:22:30 +03:00
hyperscale_tutorial.out Remove dynamic translation of regression test scripts, step 2. 2022-08-09 14:15:52 +03:00
index_create.out * alter index/table rename weird syntax supported, 2022-07-04 21:27:47 +03: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 Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
insert_select_repartition.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
insert_select_repartition_0.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
insert_select_single_shard_table.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
intermediate_result_pruning.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
intermediate_result_pruning_0.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
intermediate_result_pruning_create.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
intermediate_result_pruning_queries_1.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
intermediate_result_pruning_queries_2.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
intermediate_results.out Adds grant/revoke privileges on database propagation (#7109) 2023-08-24 14:43:19 +03:00
isolation_acquire_distributed_locks.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_add_coordinator.out Properly add / remove coordinator for isolation tests (#6181) 2022-08-18 17:32:12 +03:00
isolation_add_node_vs_reference_table_operations.out Deprecate citus.replicate_reference_tables_on_activate, make it always off (#6474) 2022-11-04 16:21:10 +01:00
isolation_add_remove_node.out Adds PG16Beta3 support (#6952) 2023-08-17 21:02:59 +03:00
isolation_append_copy_vs_all.out Remove copy into new append shard logic 2021-11-07 21:01:40 +01:00
isolation_blocking_move_multi_shard_commands.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_blocking_move_multi_shard_commands_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_blocking_move_single_shard_commands.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_blocking_move_single_shard_commands_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_blocking_shard_split.out Cleanup for shard moves (#6472) 2022-11-30 15:38:05 +03:00
isolation_blocking_shard_split_with_fkey_to_reference.out Shard Split for Citus (#6029) 2022-07-18 02:54:15 -07: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_check_mx.out Unify old GUCs into a single one 2022-02-04 10:52:56 +01:00
isolation_citus_dist_activity.out Deparse ALTER TABLE commands if ADD COLUMN is the only subcommand 2023-07-12 18:17:47 +03:00
isolation_citus_locks.out Introduce citus_locks view 2022-07-21 03:06:57 +03:00
isolation_citus_pause_node.out Adds citus_pause_node udf (#7089) 2023-09-01 11:39:30 +03:00
isolation_citus_pause_node_1.out Adds citus_pause_node udf (#7089) 2023-09-01 11:39:30 +03:00
isolation_citus_schema_distribute_undistribute.out Error for single shard table creation if replication factor > 1 (#7006) 2023-06-15 13:13:45 +03:00
isolation_cluster_management.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_concurrent_dml.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_concurrent_move_create_table.out Revert "Revert "Creates new colocation for colocate_with:='none' too"" (#6227) 2022-08-24 10:54:04 +03:00
isolation_copy_placement_vs_copy_placement.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
isolation_copy_placement_vs_modification.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
isolation_copy_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_create_citus_local_table.out Hint users to call "citus_set_coordinator_host" first (#6425) 2022-10-12 18:18:51 +03:00
isolation_create_distributed_concurrently_after_drop_column.out Introduce code changes to fix Issue:6303 (#6328) 2022-09-14 19:56:32 +05:30
isolation_create_distributed_table.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_create_distributed_table_concurrently.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
isolation_create_restore_point.out Clean up multi_shard_commit_protocol guc leftovers (#6110) 2022-08-01 15:22:02 +03:00
isolation_create_table_vs_add_remove_node.out Generalize the error checks while removing node 2021-11-26 14:25:29 +01:00
isolation_data_migration.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_ddl_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_delete_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_dis2ref_foreign_keys_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_distributed_deadlock_detection.out Fix flakyness in isolation_distributed_deadlock_detection (#6240) 2022-08-26 12:03:40 +03:00
isolation_distributed_transaction_id.out Drop support for CitusInitiatedBackend 2022-02-24 12:12:43 +01:00
isolation_drop_alter_index_select_for_update_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_drop_shards.out Remove master_apply_delete_command 2021-10-18 22:29:37 +02:00
isolation_drop_vs_all.out Add non-blocking variant of create_distributed_table (#6087) 2022-08-30 15:35:40 +03:00
isolation_dump_global_wait_edges.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_dump_local_wait_edges.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_ensure_dependency_activate_node.out Mark objects as distributed even when pg_dist_node is empty (#6900) 2023-05-16 11:45:42 +03:00
isolation_extension_commands.out Mark objects as distributed even when pg_dist_node is empty (#6900) 2023-05-16 11:45:42 +03:00
isolation_fix_partition_shard_index_names.out Run fix_partition_shard_index_names after each wrong naming command 2021-11-08 10:43:34 +01:00
isolation_get_all_active_transactions.out Check the PGPROC's validity properly 2022-07-26 17:44:44 +02:00
isolation_get_distributed_wait_queries_mx.out Adjust some isolation test for the recent PG commits (#6210) 2022-08-19 17:06:34 +03:00
isolation_global_pid.out Updates citus_dist_stat_activity to use citus_stat_activity 2022-03-04 17:28:17 +03:00
isolation_hash_copy_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_insert_select_conflict.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_insert_select_repartition.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_insert_select_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_insert_select_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_insert_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_insert_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_insert_vs_vacuum.out Fix flakyness in isolation_insert_vs_vacuum (#6589) 2023-01-02 16:51:58 +01:00
isolation_logical_replication_binaryless.out Enable binary logical replication for shard moves (#6017) 2022-08-23 16:38:00 +02:00
isolation_logical_replication_multi_shard_commands.out Drop defer drop gucs (#6447) 2022-10-25 16:48:34 +03:00
isolation_logical_replication_multi_shard_commands_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_logical_replication_nonsu_nonbypassrls.out Tests moving a shard with RLS owned by nonbypassrls & nonsuperuser (#6369) 2022-09-27 14:53:23 +03:00
isolation_logical_replication_single_shard_commands.out Drop defer drop gucs (#6447) 2022-10-25 16:48:34 +03:00
isolation_logical_replication_single_shard_commands_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_logical_replication_skip_fk_validation.out Actually skip constraint validation on shards after shard move (#6640) 2023-01-27 13:08:05 +01:00
isolation_logical_replication_with_partitioning.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
isolation_master_update_node.out Cleans up test outputs (#6434) 2022-10-17 15:13:07 +03:00
isolation_master_update_node_0.out Cleans up test outputs (#6434) 2022-10-17 15:13:07 +03:00
isolation_max_client_connections.out Concurrent shard move/copy and colocated table creation fix 2022-07-27 10:01:19 +02:00
isolation_merge.out Add appropriate locks for MERGE to run in parallel 2023-03-28 09:45:40 -07:00
isolation_merge_0.out Add appropriate locks for MERGE to run in parallel 2023-03-28 09:45:40 -07:00
isolation_merge_replicated.out Add appropriate locks for MERGE to run in parallel 2023-03-28 09:45:40 -07:00
isolation_merge_replicated_0.out Add appropriate locks for MERGE to run in parallel 2023-03-28 09:45:40 -07:00
isolation_metadata_sync_deadlock.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_metadata_sync_vs_all.out Deprecate citus.replicate_reference_tables_on_activate, make it always off (#6474) 2022-11-04 16:21:10 +01:00
isolation_modify_with_subquery_vs_dml.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_move_placement_vs_modification.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
isolation_move_placement_vs_modification_fk.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
isolation_move_placement_vs_move_placement.out Drop SHARD_STATE_TO_DELETE (#6494) 2023-01-03 14:38:16 +03:00
isolation_multi_shard_modify_vs_all.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_multiuser_locking.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
isolation_non_blocking_shard_split.out Fix flaky isolation_non_blocking_shard_split test (#6666) 2023-01-30 13:44:23 +01:00
isolation_non_blocking_shard_split_fkey.out Introduce Non-Blocking Shard Split Workflow 2022-08-04 16:32:38 +02:00
isolation_non_blocking_shard_split_with_index_as_replicaIdentity.out Introduce Non-Blocking Shard Split Workflow 2022-08-04 16:32:38 +02:00
isolation_partitioned_copy_vs_all.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_progress_monitoring.out PG17 compatibility: ensure get_progress() output is consistent (#7793) 2024-12-19 18:17:57 +00:00
isolation_range_copy_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_rebalancer_deferred_drop.out Drop SHARD_STATE_TO_DELETE (#6494) 2023-01-03 14:38:16 +03:00
isolation_ref2ref_foreign_keys.out Bump PG versions in CI configs 2022-08-22 17:16:52 +03:00
isolation_ref2ref_foreign_keys_enterprise.out Replace isolation tester func only once on enterprise tests (#6064) 2022-07-14 19:16:53 +03:00
isolation_ref2ref_foreign_keys_on_mx.out Add ORDER BY in pg_locks to avoid output order diffs (#6145) 2022-08-09 06:02:07 +03:00
isolation_ref_select_for_update_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_ref_update_delete_upsert_vs_all_on_mx.out Revert "Revert "Creates new colocation for colocate_with:='none' too"" (#6227) 2022-08-24 10:54:04 +03:00
isolation_reference_copy_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_reference_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_reference_table.out Fix reference table lock contention (#6173) 2022-08-17 18:19:28 +02:00
isolation_remove_coordinator.out Properly add / remove coordinator for isolation tests (#6181) 2022-08-18 17:32:12 +03:00
isolation_replace_wait_function.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_replicate_reference_tables_to_coordinator.out Deprecate citus.replicate_reference_tables_on_activate, make it always off (#6474) 2022-11-04 16:21:10 +01:00
isolation_replicated_dist_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_schema_based_sharding.out Error for single shard table creation if replication factor > 1 (#7006) 2023-06-15 13:13:45 +03:00
isolation_select_for_update.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
isolation_select_vs_all.out Prevent pushing down INSERT .. SELECT queries that we shouldn't (and allow some more) (#6752) 2023-05-17 15:05:08 +03:00
isolation_select_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_setup.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_shard_move_vs_start_metadata_sync.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
isolation_shard_rebalancer.out Feature: run rebalancer in the background (#6215) 2022-09-12 20:46:53 +03:00
isolation_shard_rebalancer_progress.out Adds PostgreSQL 16 RC1 support (#7173) 2023-09-05 14:32:41 +03:00
isolation_shouldhaveshards.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_tenant_isolation.out verify shards if exists for insert, delete, update (#6280) 2022-09-06 15:29:14 +02:00
isolation_tenant_isolation_nonblocking.out 'Deferred Drop' and robust 'Shard Cleanup' for Splits. (#6258) 2022-09-06 12:11:20 -07:00
isolation_tenant_isolation_with_fkey_to_reference.out Nonblocking tenant isolation is supported by using split api. (#6167) 2022-08-17 11:13:07 +03:00
isolation_transaction_recovery.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_truncate_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_truncate_vs_all_on_mx.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_undistribute_table.out Replace iso tester func only once (#5964) 2022-07-06 11:04:31 +03:00
isolation_update_delete_upsert_vs_all_on_mx.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_update_node.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
isolation_update_node_lock_writes.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
isolation_update_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_upsert_vs_all.out Fix flakyness in create index concurrently isolation tests (#6158) 2022-08-11 10:29:11 +02:00
isolation_vacuum_skip_locked.out * Added isolation tests for vacuum, 2022-06-23 15:33:14 +03:00
isolation_validate_vs_insert.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
issue_5099.out Prevent cache usage on citus_drop_trigger codepaths 2021-11-18 20:24:51 +03:00
issue_5248.out PG17 compatibility: fix some tests outputs (#7765) 2024-12-02 18:03:38 +03:00
issue_5248_0.out PG17 compatibility: fix some tests outputs (#7765) 2024-12-02 18:03:38 +03:00
issue_5763.out fix the problem #5763 (#6519) 2022-12-02 13:49:32 +01:00
issue_6543.out Fix regression in allowed foreign keys on distributed tables (#6550) 2023-01-24 16:09:21 +03:00
issue_6592.out Fix crash when trying to replicate a ref table that is actually dropped (#6595) 2023-01-06 14:52:08 +03:00
issue_6758.out skip restriction clause if it contains placeholdervar (#6857) 2023-04-17 18:14:01 +03:00
issue_7477.out Change the order in which the locks are acquired (#7542) 2024-04-17 10:26:50 +02:00
join_pushdown.out Enable logical planner for single-shard tables (#6950) 2023-06-08 10:57:23 +03:00
limit_intermediate_size.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
local_dist_join.out fix multi level recursive plan (#6650) 2023-01-27 21:25:04 +03:00
local_dist_join_load.out Add local-dist table joins to arbitrary configs 2021-10-18 20:31:18 +03:00
local_dist_join_mixed.out PG17 compatibility: Fix Test Failure in local_dist_join_mixed (#7731) 2024-12-19 22:21:23 +03:00
local_dist_join_modifications.out Increase the performance with a trick 2020-12-15 18:18:36 +03:00
local_shard_copy.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
local_shard_execution.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
local_shard_execution_0.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
local_shard_execution_dropped_column.out Handle tables and objects as metadata. Update UDFs accordingly 2022-01-31 16:20:15 +03:00
local_shard_execution_replicated.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
local_shard_execution_replicated_0.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
local_shard_utility_command_execution.out Deparse ALTER TABLE commands if ADD COLUMN is the only subcommand 2023-07-12 18:17:47 +03:00
local_table_join.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
locally_execute_intermediate_results.out Remove all occurences of replication_model GUC 2021-05-21 16:14:59 +03:00
logical_rep_consistency.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
logical_replication.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
materialized_view.out Make sure that materialized views that contains only (#4499) 2021-01-13 13:17:43 +03:00
merge.out Redo #7620: Fix merge command when insert value does not have source distributed column (#7627) 2024-06-18 16:49:39 +02:00
merge_0.out Support MERGE Phase – I 2022-12-18 20:32:15 -08:00
merge_arbitrary.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_arbitrary_0.out 1) Restrict MERGE command INSERT to the source's distribution column 2023-03-16 13:43:08 -07:00
merge_arbitrary_create.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_arbitrary_create_0.out 1) Restrict MERGE command INSERT to the source's distribution column 2023-03-16 13:43:08 -07:00
merge_partition_tables.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_partition_tables_0.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_repartition1.out Fixes the bug#6785 2023-06-22 10:44:45 -07:00
merge_repartition1_0.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_repartition2.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_repartition2_0.out This pull request introduces support for nonroutable merge commands in the following scenarios: 2023-06-19 12:23:40 -07:00
merge_schema_sharding.out Support MERGE command for single_shard_distributed Target (#7643) 2024-07-17 15:11:38 +03:00
merge_schema_sharding_0.out Isolate schema sharding/MERGE tests into a new file, and 2023-07-19 12:23:45 -07:00
merge_unsupported.out PG17 Compatibility: Support MERGE features in Citus with clean exceptions (#7781) 2024-12-19 14:02:24 +03:00
merge_unsupported_0.out PG17 Compatibility: Support MERGE features in Citus with clean exceptions (#7781) 2024-12-19 14:02:24 +03:00
merge_unsupported_1.out PG17 Compatibility: Support MERGE features in Citus with clean exceptions (#7781) 2024-12-19 14:02:24 +03:00
merge_vcore.out Support MERGE command for single_shard_distributed Target (#7643) 2024-07-17 15:11:38 +03:00
merge_vcore_0.out Support MERGE command for single_shard_distributed Target (#7643) 2024-07-17 15:11:38 +03:00
metadata_sync_helpers.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
minimal_cluster_management.out Make coordinator always in metadata by default in regression tests. (#6847) 2023-04-17 14:14:37 +03:00
mixed_relkind_tests.out Phase - I: recursively plan non-recurring relations 2022-12-07 18:27:50 +03:00
modification_correctness.out Use get_attnum to find the attribute number of target entry (#5220) 2021-08-31 16:47:19 +03:00
multi_agg_approximate_distinct.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_agg_approximate_distinct_0.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_agg_distinct.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_agg_type_conversion.out Remove dynamic translation of regression test scripts, step 2. 2022-08-09 14:15:52 +03:00
multi_alias.out Propagates column aliases (#6400) 2022-10-06 12:27:31 +03:00
multi_alter_table_add_constraints.out Properly handle index storage options for ADD CONSTRAINT / COLUMN 2023-07-11 17:42:43 +03:00
multi_alter_table_add_constraints_without_name.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_alter_table_add_foreign_key_without_name.out When Creating a FOREIGN KEY without a name, schema qualify referenced table name in deparser. (#6986) 2023-06-09 14:13:13 +03:00
multi_alter_table_row_level_security.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
multi_alter_table_row_level_security_escape.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_alter_table_statements.out Fix the incorrect column count after ALTER TABLE, this fixes the bug #7378 (please read the analysis in the bug for more information) 2024-01-24 11:48:06 -08:00
multi_array_agg.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02: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_create_table.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_behavioral_analytics_create_table_superuser.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_behavioral_analytics_single_shard_queries.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_cache_invalidation.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_citus_tools.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
multi_cluster_management.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_colocated_shard_rebalance.out Drop SHARD_STATE_TO_DELETE (#6494) 2023-01-03 14:38:16 +03:00
multi_colocation_utils.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_complex_count_distinct.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
multi_complex_count_distinct_0.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
multi_complex_expressions.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_copy.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
multi_count_type_conversion.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_create_fdw.out Stabilize test helper sql files 2023-07-06 10:47:41 +03:00
multi_create_role_dependency.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_create_shards.out Remove remaining master_create_distributed_table usages (#6477) 2022-11-04 16:30:06 +01:00
multi_create_table.out Remove remaining master_create_distributed_table usages (#6477) 2022-11-04 16:30:06 +01:00
multi_create_table_constraints.out Add an allow_unsafe_constraints flag for constraints without distribution column (#6237) 2022-08-25 11:37:50 +03:00
multi_create_table_superuser.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_create_users.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_cross_shard.out update test outputs with task-tracker removal 2020-07-21 16:25:08 +03:00
multi_data_types.out Make 8 more tests runnable multiple times via run_test.py (#6791) 2023-03-27 12:19:06 +03:00
multi_deparse_function.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_deparse_procedure.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_deparse_shard_query.out Adds grant/revoke privileges on database propagation (#7109) 2023-08-24 14:43:19 +03:00
multi_deparse_shard_query_0.out Adds grant/revoke privileges on database propagation (#7109) 2023-08-24 14:43:19 +03: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 Remove shardstate leftovers (#6627) 2023-01-19 11:43:58 +03:00
multi_drop_extension.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_dropped_column_aliases.out Phase - I: recursively plan non-recurring relations 2022-12-07 18:27:50 +03:00
multi_explain.out PG17 compatibility: fix plan diffs in multi_explain (#7780) 2024-12-17 21:42:15 +00:00
multi_explain_0.out PG17 compatibility: fix plan diffs in multi_explain (#7780) 2024-12-17 21:42:15 +00:00
multi_extension.out PG17 compatibility: Adjust print_extension_changes function for extra type outputs in PG17 (#7761) 2024-11-22 16:10:02 +03:00
multi_fix_partition_shard_index_names.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_follower_configure_followers.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_follower_dml.out Add regression tests for LOCK command citus.use_secondary_nodes=always mode 2022-07-13 14:27:11 +02: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 more generic read-replica tests 2022-07-13 14:58:30 +02:00
multi_foreign_key.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
multi_foreign_key_relation_graph.out Propagate create/drop schema commands 2022-02-10 14:58:09 +03:00
multi_function_evaluation.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
multi_function_in_join.out Mark objects as distributed even when pg_dist_node is empty (#6900) 2023-05-16 11:45:42 +03:00
multi_generate_ddl_commands.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
multi_hash_pruning.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
multi_having_pushdown.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
multi_index_statements.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_insert_select.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
multi_insert_select_0.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +03:00
multi_insert_select_conflict.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_insert_select_conflict_0.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_insert_select_non_pushable_queries.out Prevent pushing down INSERT .. SELECT queries that we shouldn't (and allow some more) (#6752) 2023-05-17 15:05:08 +03:00
multi_insert_select_window.out Disable citus.enable_non_colocated_router_query_pushdown by default (#6909) 2023-05-15 12:07:50 +03:00
multi_join_order_additional.out Disable co-located joins for append-distributed tables 2021-10-18 21:11:16 +02:00
multi_join_order_tpch_repartition.out Disable co-located joins for append-distributed tables 2021-10-18 21:11:16 +02:00
multi_join_order_tpch_small.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_join_pruning.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_json_agg.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_json_object_agg.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_jsonb_agg.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_jsonb_object_agg.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_large_shardid.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_level_recursive_queries.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_limit_clause.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_limit_clause_approximate.out Reduce reliance on append tables in regression tests 2021-10-08 21:27:14 +02:00
multi_load_data.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_load_data_superuser.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_load_more_data.out Use client side \copy when accessing test files 2022-08-09 15:00:42 +03:00
multi_master_protocol.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
multi_metadata_access.out Multi tenant monitoring (#6725) 2023-04-05 17:44:17 +03:00
multi_metadata_attributes.out Adds control for background task executors involving a node (#6771) 2023-04-06 14:12:39 +03:00
multi_metadata_sync.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
multi_metadata_sync_0.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
multi_modifications.out Rearrange the common code into a newfunction to facilitate the multiple checks of the same conditions in a multi-modify MERGE statement 2023-02-24 12:55:11 -08:00
multi_modifying_xacts.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
multi_move_mx.out fixing expected file of multi_move_mx test 2024-06-18 16:49:39 +02:00
multi_multiuser.out fix the problem #5763 (#6519) 2022-12-02 13:49:32 +01:00
multi_multiuser_auth.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
multi_multiuser_basic_queries.out Clean up large_table_shard_count guc leftovers (#6144) 2022-08-09 06:31:57 +03:00
multi_multiuser_copy.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_multiuser_grant.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_multiuser_load_data.out Remove dynamic translation of regression test scripts, step 2. 2022-08-09 14:15:52 +03:00
multi_multiuser_master_protocol.out PG17 compatibility: account for MAINTAIN privilege in regress tests (#7774) 2024-12-06 13:03:51 +00:00
multi_multiuser_master_protocol_0.out PG17 compatibility: account for MAINTAIN privilege in regress tests (#7774) 2024-12-06 13:03:51 +00:00
multi_mx_add_coordinator.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_mx_alter_distributed_table.out Don't leak search_path to workers on DDL (#6444) 2022-10-19 16:47:35 +02:00
multi_mx_call.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
multi_mx_call_0.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
multi_mx_copy_data.out Make 8 more tests runnable multiple times via run_test.py (#6791) 2023-03-27 12:19:06 +03:00
multi_mx_create_table.out PG17 compatibility: add COLLPROVIDER_BUILTIN option and fix tests (#7752) 2024-11-19 12:26:45 +03:00
multi_mx_ddl.out Show local managed tables in citus_tables and hide tables owned by extensions (#6321) 2022-09-12 17:49:17 +03:00
multi_mx_explain.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
multi_mx_function_call_delegation.out Citus UDFs support for single shard tables (#6916) 2023-05-26 17:30:05 +03:00
multi_mx_function_call_delegation_0.out Citus UDFs support for single shard tables (#6916) 2023-05-26 17:30:05 +03:00
multi_mx_function_table_reference.out Remove all occurences of replication_model GUC 2021-05-21 16:14:59 +03:00
multi_mx_hide_shard_names.out PG17 compatibility: fix backend type orders in test (#7760) 2024-11-22 01:08:15 +03:00
multi_mx_insert_select_repartition.out Pg15 support (#6085) 2022-08-24 17:59:17 +02:00
multi_mx_insert_select_repartition_0.out Pg15 support (#6085) 2022-08-24 17:59:17 +02:00
multi_mx_metadata.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
multi_mx_modifications.out Rearrange the common code into a newfunction to facilitate the multiple checks of the same conditions in a multi-modify MERGE statement 2023-02-24 12:55:11 -08:00
multi_mx_modifications_to_reference_tables.out Remove all occurences of replication_model GUC 2021-05-21 16:14:59 +03:00
multi_mx_modifying_xacts.out Add a GUC to disallow planning the queries that reference non-colocated tables via router planner (#6793) 2023-03-28 13:10:29 +03:00
multi_mx_node_metadata.out Fix flaky multi_mx_node_metadata.sql test (#7317) 2024-06-18 16:49:39 +02:00
multi_mx_partitioning.out Add CREATE INDEX ... ON ONLY and ALTER INDEX ... ATTACH PARTITION (#4938 #4980) 2021-08-13 13:12:45 +03:00
multi_mx_reference_table.out Remove all occurences of replication_model GUC 2021-05-21 16:14:59 +03: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 Use intermediate results for re-partition joins 2022-02-23 19:40:21 +01: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 Improve error message for recursive CTEs (#7407) 2024-04-17 10:26:50 +02:00
multi_mx_schema_support.out Fix flaky multi_mx_schema_support test (#6813) 2023-03-31 12:36:53 +02: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 Drop support for citus.multi_shard_commit_protocol (#5380) 2021-10-21 14:01:28 +02:00
multi_mx_truncate_from_worker.out Switch to using LOCK instead of lock_relation_if_exists in TRUNCATE (#5930) 2022-05-11 18:38:48 +03:00
multi_name_lengths.out Enable ALTER TABLE ... ADD CHECK (#6606) 2023-01-12 23:31:06 +03:00
multi_name_resolution.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_null_minmax_value_pruning.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_orderby_limit_pushdown.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
multi_outer_join.out Phase - III: recursively plan non-recurring sub join trees too 2022-12-07 18:27:50 +03:00
multi_outer_join_reference.out Phase - III: recursively plan non-recurring sub join trees too 2022-12-07 18:27:50 +03:00
multi_partition_pruning.out Never allow co-located joins of append-distributed tables 2021-10-18 21:11:16 +02:00
multi_partitioning.out Change by_disk_size rebalance strategy to have a base size (#7035) 2023-06-27 16:37:09 +02:00
multi_partitioning_utils.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
multi_poolinfo_usage.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_prepare_plsql.out Drop support for citus.multi_shard_commit_protocol (#5380) 2021-10-21 14:01:28 +02:00
multi_prepare_sql.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
multi_prune_shard_list.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
multi_query_directory_cleanup.out Remove old re-partitioning functions 2022-04-04 18:11:52 +02:00
multi_read_from_secondaries.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_real_time_transaction.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_reference_table.out PG17 compatibility: add helper function for EXPLAIN diffs in scalar subquery output (#7757) 2024-11-21 22:22:30 +03:00
multi_remove_node_reference_table.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_repartition_join_planning.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_repartition_join_pruning.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_repartition_join_ref.out Disable co-located joins for append-distributed tables 2021-10-18 21:11:16 +02:00
multi_repartition_join_task_assignment.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_repartition_udt.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_repartitioned_subquery_udf.out Start to propagate functions to worker nodes with 2022-02-18 13:56:51 +03:00
multi_replicate_reference_table.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
multi_router_planner.out PG17 compatibility: fix multi-1 diffs caused by PG17 optimizer enhancements (#7769) 2024-12-06 11:55:12 +00:00
multi_router_planner_fast_path.out PG17 compatibility: fix multi-1 diffs caused by PG17 optimizer enhancements (#7769) 2024-12-06 11:55:12 +00:00
multi_row_insert.out Fixes column default coming from a sequence (#4914) 2021-06-03 23:02:09 +03:00
multi_row_router_insert.out Deparse ALTER TABLE commands if ADD COLUMN is the only subcommand 2023-07-12 18:17:47 +03:00
multi_schema_support.out PG17 compatibility: add COLLPROVIDER_BUILTIN option and fix tests (#7752) 2024-11-19 12:26:45 +03:00
multi_select_distinct.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
multi_select_for_update.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
multi_sequence_default.out Properly handle IF NOT EXISTS for ADD COLUMN 2023-07-11 17:42:43 +03:00
multi_shard_update_delete.out Enable logical planner for single-shard tables (#6950) 2023-06-08 10:57:23 +03:00
multi_simple_queries.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_single_relation_subquery.out Remove task tracker executor (#3850) 2020-07-18 13:11:36 +03:00
multi_size_queries.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_sql_function.out Throw an error if there is a RangeTblEntry that is not assigned an RTE identity. (#6295) 2022-09-06 15:46:41 +02:00
multi_subquery.out PG17 compatibility: add helper function for EXPLAIN diffs in scalar subquery output (#7757) 2024-11-21 22:22:30 +03:00
multi_subquery_behavioral_analytics.out Start to propagate functions to worker nodes with 2022-02-18 13:56:51 +03:00
multi_subquery_complex_queries.out Start erroring out for unsupported lateral subqueries (#5753) 2022-03-11 11:59:18 +01:00
multi_subquery_complex_reference_clause.out Add lateral join checks for outer joins and drop the useless ones for semi joins 2022-12-07 18:27:50 +03:00
multi_subquery_in_where_clause.out Phase - II: recursively plan non-recurring subqueries too 2022-12-07 18:27:50 +03:00
multi_subquery_in_where_reference_clause.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +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 Remove VERBOSE output to make pg14 and pg13 output the same 2021-09-03 15:41:28 +03:00
multi_subtransactions.out Fix Subtransaction memory leak 2020-07-09 12:33:39 -07:00
multi_table_ddl.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_task_assignment_policy.out Fix typo: "no sharding pruning constraints" -> "no shard pruning constraints" (#5490) 2021-11-25 21:00:44 +01:00
multi_task_string_size.out Remove unused GUCs 2021-01-15 13:30:45 +03:00
multi_tenant_isolation.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_tenant_isolation_nonblocking.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_test_catalog_views.out Reduce setup time of check-minimal and check-minimal-mx (#6117) 2022-08-02 17:58:59 +03:00
multi_test_helpers.out PG17 compatibility (#7653): Fix test diffs in columnar schedule (#7768) 2024-12-03 09:14:47 +00:00
multi_test_helpers_superuser.out Start to propagate functions to worker nodes with 2022-02-18 13:56:51 +03: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 Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_transaction_recovery_multiple_databases.out #6548 2PC recovery is extremely ineffective on a cluster with multiple DATABASEs fix (#7174) 2023-09-04 15:28:22 +02:00
multi_transactional_drop_shards.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_truncate.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_unsupported_worker_operations.out Remove remaining master_create_distributed_table usages (#6477) 2022-11-04 16:30:06 +01:00
multi_upsert.out Make 8 more tests runnable multiple times via run_test.py (#6791) 2023-03-27 12:19:06 +03:00
multi_utilities.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
multi_utility_statements.out Rewind tuple store to fix scrollable with hold cursor fetches (#7014) 2023-06-19 23:00:18 +03:00
multi_utility_warnings.out Cleanup multi_utility_warnings test 2022-10-04 15:27:42 +03:00
multi_view.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
multi_working_columns.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
mx_coordinator_shouldhaveshards.out Prevent pushing down INSERT .. SELECT queries that we shouldn't (and allow some more) (#6752) 2023-05-17 15:05:08 +03:00
mx_coordinator_shouldhaveshards_0.out Prevent pushing down INSERT .. SELECT queries that we shouldn't (and allow some more) (#6752) 2023-05-17 15:05:08 +03:00
mx_foreign_key_to_reference_table.out Remove all occurences of replication_model GUC 2021-05-21 16:14:59 +03:00
mx_regular_user.out Switch to using LOCK instead of lock_relation_if_exists in TRUNCATE (#5930) 2022-05-11 18:38:48 +03:00
nested_execution.out Improve nested execution checks and add GUC to disable 2022-05-20 18:55:43 +02:00
nested_execution_create.out Improve nested execution checks and add GUC to disable 2022-05-20 18:55:43 +02:00
node_conninfo_reload.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
non_colocated_leaf_subquery_joins.out Mark objects as distributed even when pg_dist_node is empty (#6900) 2023-05-16 11:45:42 +03:00
non_colocated_subquery_joins.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
non_super_user_object_metadata.out Move pg_dist_object to pg_catalog (#5765) 2022-03-04 17:40:38 +00:00
null_parameters.out Fix flaky test 2021-02-24 17:09:08 +03:00
object_propagation_debug.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
partition_wise_join.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
partition_wise_join_0.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
partitioned_indexes_create.out Run fix_partition_shard_index_names after each wrong naming command 2021-11-08 10:43:34 +01:00
partitioned_intermediate_results.out Partitioned task list results. 2020-01-09 10:32:58 -08:00
partitioning_issue_3970.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
pg12.out PG16 compatibility - more test output fixes (#7108) 2023-08-09 18:04:32 +03:00
pg13.out Clean up normalize file (#6578) 2022-12-26 12:08:27 +03:00
pg13_propagate_statistics.out PG17 compatibility: Fix -1/Null diff in stxstattarget test output (#7748) 2024-11-17 22:41:53 +03:00
pg13_with_ties.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
pg14.out Improve error message for recursive CTEs (#7407) 2024-04-17 10:26:50 +02:00
pg15.out PG17 Compatibility: Support MERGE features in Citus with clean exceptions (#7781) 2024-12-19 14:02:24 +03:00
pg15_0.out Pg15 support (#6085) 2022-08-24 17:59:17 +02:00
pg15_jsonpath.out Add tests for jsonpath changes on PG15 2022-09-26 22:55:54 +03:00
pg15_jsonpath_0.out Add tests for jsonpath changes on PG15 2022-09-26 22:55:54 +03:00
pg16.out PG17 compatibility: Normalize COPY error messages (#7759) 2024-11-22 00:45:04 +03:00
pg16_0.out PG16 compatibility - new options to vacuum and analyze (#7114) 2023-08-16 16:18:28 +03:00
pg17.out PG17 compatibility: account for identity columns in partitioned tables. (#7785) 2024-12-18 13:18:53 +00:00
pg17_0.out PG17 compatibility: account for MAINTAIN privilege in regress tests (#7774) 2024-12-06 13:03:51 +00:00
pg_dump.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
pgmerge.out PG17 Compatibility: Support MERGE features in Citus with clean exceptions (#7781) 2024-12-19 14:02:24 +03:00
pgmerge_0.out Support MERGE Phase – I 2022-12-18 20:32:15 -08:00
postgres.out Add arbitrary config tests for function DDL statements (#5885) 2022-04-12 16:03:10 +03:00
prepared_statements_1.out Enable local_shared_pool_size 5 in arbitrary configs test 2022-02-23 19:40:21 +01:00
prepared_statements_2.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
prepared_statements_3.out Add an infrastructure to run same tests with arbitrary configs (#5316) 2021-10-12 14:24:19 +03:00
prepared_statements_4.out Adjusts query's CoerceViaIO & RelabelType nodes that are improper for deparsing (#6391) 2023-05-04 16:46:02 +03:00
prepared_statements_create_load.out Adjusts query's CoerceViaIO & RelabelType nodes that are improper for deparsing (#6391) 2023-05-04 16:46:02 +03:00
propagate_extension_commands.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
propagate_foreign_servers.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
propagate_set_commands.out Propagate BEGIN properties to worker nodes (#6483) 2022-11-10 18:08:43 +01:00
propagate_statistics.out Fix alter statistics namespace name 2022-05-11 18:44:37 +03:00
publication.out Add tests with publications with schema and table of the same schema (#7184) 2023-09-06 16:40:36 +03:00
publication_0.out Add Publication Tests for Tenant Schema Tables (#7011) 2023-06-19 12:39:41 +03:00
query_single_shard_table.out PG17 compatibility: fix multi-1 diffs caused by PG17 optimizer enhancements (#7769) 2024-12-06 11:55:12 +00:00
recurring_outer_join.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
recursive_dml_queries_mx.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
recursive_dml_with_different_planners_executors.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
recursive_relation_planning_restriction_pushdown.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
recursive_view_local_table.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
ref_citus_local_fkeys.out Deprecate citus.replicate_reference_tables_on_activate, make it always off (#6474) 2022-11-04 16:21:10 +01:00
relation_access_tracking.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
relation_access_tracking_single_node.out Add missing relation access record for local utility command 2022-07-29 11:36:33 +02:00
remove_coordinator.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
remove_coordinator_from_metadata.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
replicate_reference_tables_to_coordinator.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
replicated_partitioned_table.out Remove do_repair option from citus_copy_shard_placement (#6299) 2022-09-09 15:44:30 +02:00
replicated_table_disable_node.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
resync_metadata_with_sequences.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
row_types.out Notice when create_distributed_function called without params (#5752) 2022-03-04 17:26:39 +03:00
run_command_on_all_nodes.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
schema_based_sharding.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
schemas.out Add schema tests to arbitrary configs 2022-04-01 13:57:17 +03:00
schemas_create.out Add schema tests to arbitrary configs 2022-04-01 13:57:17 +03:00
sequences.out Add sequence tests to arbitrary config (#5771) 2022-03-14 19:16:24 +03:00
sequences_create.out Add sequence tests to arbitrary config (#5771) 2022-03-14 19:16:24 +03:00
sequences_owned_by.out Cleans up test outputs (#6434) 2022-10-17 15:13:07 +03:00
sequences_with_different_types.out Only change the sequence types if the target column type is a supported sequence type 2022-03-11 16:06:00 +01:00
sequential_modifications.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
set_operation_and_local_tables.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
set_operations.out PG17 compatibility: add/fix tests with correlated subqueries that can be pulled to a join (#7745) 2024-11-20 14:51:16 +03: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
shard_move_constraints.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
shard_move_constraints_blocking.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
shard_move_deferred_delete.out Change by_disk_size rebalance strategy to have a base size (#7035) 2023-06-27 16:37:09 +02:00
shard_rebalancer.out Log username in the failed connection message (#7432) 2024-04-17 10:26:50 +02:00
shard_rebalancer_unit.out Rebalance shard groups with placement count less than worker count (#6739) 2023-03-06 14:14:27 +03:00
shared_connection_stats.out Add GUC to set maximum connection lifetime 2021-03-16 01:57:57 +01:00
shared_connection_waits.out Bump pg12 and pg13 images to pg12.8 and pg13.8 (#5208) 2021-08-25 16:04:57 +03:00
single_hash_repartition_join.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
single_node.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
single_node_0.out Not undistribute Citus local table when converting it to a reference table / single-shard table 2023-08-29 12:57:28 +03:00
single_node_enterprise.out Do not rebalance if replication factor is greater than the node count 2023-07-25 13:38:33 +03:00
single_node_truncate.out Make single_node_truncate.sql re-runnable 2023-03-02 16:33:18 +03:00
single_shard_table_prep.out Call null-shard-key tables as single-shard distributed tables in code 2023-05-03 17:02:43 +03:00
single_shard_table_udfs.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
split_shard.out Propagate CREATE PUBLICATION statements 2023-03-29 00:59:12 +02:00
sql_procedure.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
sqlancer_failures.out PG16 compatibility - some test outputs (#7100) 2023-08-04 13:03:15 +03:00
sqlsmith_failures.out Drop postgres 12 support (#6040) 2022-07-20 17:49:36 +03:00
ssl_by_default.out Use Microsoft approved cipher string (#3639) 2020-03-24 15:51:44 +01:00
start_stop_metadata_sync.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
stat_statements.out PG17 compatibility: fix some tests outputs (#7765) 2024-12-02 18:03:38 +03: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 Phase - II: recursively plan non-recurring subqueries too 2022-12-07 18:27:50 +03:00
subquery_and_cte.out Improve error message for recursive CTEs (#7407) 2024-04-17 10:26:50 +02:00
subquery_append.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
subquery_basics.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
subquery_complex_target_list.out Pg15 support (#6085) 2022-08-24 17:59:17 +02: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_targetlist.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
subquery_in_where.out PG17 compatibility: add/fix tests with correlated subqueries that can be pulled to a join (#7745) 2024-11-20 14:51:16 +03:00
subquery_local_tables.out Bump PG14 and PG15 versions for CI tests (#7111) 2023-08-17 11:53:19 +03:00
subquery_partitioning.out Introduce CREATE/DROP VIEW 2022-05-10 13:07:14 +03:00
subquery_prepared_statements.out Propagate create/drop schema commands 2022-02-10 14:58:09 +03:00
subquery_view.out Restore Test Coverage for Pushing Down Subqueries. (#6976) 2023-06-07 12:14:34 +03:00
system_queries.out Adds null check for node in HasRangeTableRef (#7604) 2024-05-28 08:54:40 +03:00
tableam.out PG17 compatibility: fix diff in tableam (#7771) 2024-12-02 13:47:19 +00:00
tablespace.out Remove dynamic translation of regression test scripts, step 2. 2022-08-09 14:15:52 +03: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
text_search.out Make enterprise features open source (#6008) 2022-06-16 00:23:46 -07:00
undistribute_table.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
undistribute_table_cascade.out Grammar: it's to its 2022-11-28 20:43:44 +00:00
undistribute_table_cascade_mx.out Remove leftover PG version_above_11 checks from tests (#6112) 2022-08-01 15:38:19 +03:00
union_pushdown.out PG17 regress test sanity: fix diffs in union_pushdown. (#7762) 2024-11-22 16:25:22 +00:00
unsupported_lateral_subqueries.out Start erroring out for unsupported lateral subqueries (#5753) 2022-03-11 11:59:18 +01:00
update_colocation_mx.out Introduce citus_internal_update_relation_colocation 2021-08-03 11:44:58 +02:00
upgrade_autoconverted_after.out Reproduce bug via test suite 2021-11-23 13:14:00 +03:00
upgrade_autoconverted_before.out Fix pg upgrade script for foreign tables (#6100) 2022-08-05 13:35:17 +03:00
upgrade_basic_after.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
upgrade_basic_before.out PG16 compatibility - varnullingrels additions (#7107) 2023-08-15 13:07:55 +03:00
upgrade_citus_finish_citus_upgrade.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_citus_finish_citus_upgrade_0.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_citus_locks.out Introduce citus_locks view 2022-07-21 03:06:57 +03:00
upgrade_citus_stat_activity.out Introduces citus_stat_activity view 2022-03-03 16:19:20 +03:00
upgrade_columnar_after.out Remove pg_depend entries from columnar metadata indexes to columnar-am 2023-03-14 17:13:52 +03:00
upgrade_columnar_before.out Do clean-up before upgrade_columnar_before to make it runnable multiple times 2023-03-14 17:13:52 +03:00
upgrade_distributed_function_after.out Normalize tests: Remove trailing whitespace 2020-01-06 09:32:03 +01:00
upgrade_distributed_function_before.out Do not allow distributed functions on non-metadata synced nodes (#5586) 2022-01-04 13:12:57 +01:00
upgrade_distributed_triggers_after.out Fix pg14-pg15 upgrade_distributed_triggers test (#6981) 2023-06-14 15:32:38 +03:00
upgrade_distributed_triggers_after_0.out Fix pg14-pg15 upgrade_distributed_triggers test (#6981) 2023-06-14 15:32:38 +03:00
upgrade_distributed_triggers_before.out Prohibit renaming child trigger on distributed partition pre PG15 (#6290) 2022-09-06 12:19:25 +03:00
upgrade_distributed_triggers_before_0.out Add pg14->pg15 upgrade test for dist. triggers on part. tables (#6265) 2022-09-01 12:32:44 +03:00
upgrade_list_citus_objects.out PG17 compatibility: Adjust print_extension_changes function for extra type outputs in PG17 (#7761) 2024-11-22 16:10:02 +03:00
upgrade_pg_dist_cleanup_after.out Move cleanup record test to upgrade schedule (#6794) 2023-04-06 11:42:49 +03:00
upgrade_pg_dist_cleanup_after_0.out Move cleanup record test to upgrade schedule (#6794) 2023-04-06 11:42:49 +03:00
upgrade_pg_dist_cleanup_before.out Move cleanup record test to upgrade schedule (#6794) 2023-04-06 11:42:49 +03:00
upgrade_pg_dist_cleanup_before_0.out Move cleanup record test to upgrade schedule (#6794) 2023-04-06 11:42:49 +03:00
upgrade_post_11_after.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_post_11_after_0.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_post_11_before.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_post_11_before_0.out Remove PG13 from CI and Configure (#7002) 2023-06-15 14:54:06 +03:00
upgrade_rebalance_strategy_after.out Implement an improvement threshold in the rebalancer (#4927) 2021-05-11 14:24:59 +02:00
upgrade_rebalance_strategy_before.out Implement an improvement threshold in the rebalancer (#4927) 2021-05-11 14:24:59 +02: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_schema_based_sharding_after.out Rename pg_dist tenant_schema to pg_dist_schema (#7001) 2023-06-14 12:12:15 +03:00
upgrade_schema_based_sharding_before.out Add support for schema-based-sharding via a GUC (#6866) 2023-05-26 10:49:58 +03:00
upgrade_single_shard_table_after.out Prevent downgrades when there is a single-shard table in the cluster (#6908) 2023-05-16 09:44:28 +02:00
upgrade_single_shard_table_before.out Prevent downgrades when there is a single-shard table in the cluster (#6908) 2023-05-16 09:44:28 +02: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 Fix tests in multi-1-schedule that fail with metadata syncing 2021-11-26 12:09:53 +03:00
values.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
view_propagation.out PG16 compatibility - more test output fixes (#7112) 2023-08-15 13:49:25 +03:00
views.out Propagate dependent views upon distribution (#5950) 2022-05-26 14:23:45 +03:00
views_create.out Propagate dependent views upon distribution (#5950) 2022-05-26 14:23:45 +03:00
window_functions.out Drop PG13 Support Phase 2 - Remove PG13 specific paths/tests (#7007) 2023-06-21 14:18:23 +03:00
with_basics.out Improve error message for recursive CTEs (#7407) 2024-04-17 10:26:50 +02:00
with_dml.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
with_executors.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
with_join.out Change test files in multi and multi-1 schedules to accommodate coordinator in the metadata. (#6939) 2023-06-05 10:37:48 +03:00
with_modifying.out Add support for router INSERT .. SELECT commands (#7077) 2023-07-28 15:07:20 +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 Fixes: #5787 In prepared statements, map any unused parameters 2022-05-13 19:31:05 -07:00
with_set_operations.out Drop postgres 11 support 2021-03-25 09:20:28 +03: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_copy_table_to_node.out Use shard split copy code for blocking shard moves (#6098) 2022-08-01 20:10:36 +03:00
worker_split_binary_copy_test.out Add non-blocking variant of create_distributed_table (#6087) 2022-08-30 15:35:40 +03:00
worker_split_copy_test.out Exclude-Generated-Columns-In-Copy (#6721) 2023-03-07 18:15:50 +03:00
worker_split_text_copy_test.out Add non-blocking variant of create_distributed_table (#6087) 2022-08-30 15:35:40 +03:00