diff --git a/src/test/regress/expected/aggregate_support.out b/src/test/regress/expected/aggregate_support.out index dfaa365c6..0a30d061c 100644 --- a/src/test/regress/expected/aggregate_support.out +++ b/src/test/regress/expected/aggregate_support.out @@ -427,7 +427,6 @@ select count(*) FROM ( (1 row) RESET citus.task_executor_type; --- This fails due to table types not being managed properly select key, count(distinct aggdata) from aggdata group by key order by 1, 2; key | count diff --git a/src/test/regress/expected/dml_recursive.out b/src/test/regress/expected/dml_recursive.out index 75ae7e6fb..a629891ad 100644 --- a/src/test/regress/expected/dml_recursive.out +++ b/src/test/regress/expected/dml_recursive.out @@ -184,7 +184,7 @@ DEBUG: Plan XXX query after replacing subqueries and CTEs: UPDATE recursive_dml 50 | 50 | {"f1": 50, "f2": 2500} (1 row) --- there is a lateral join (e.g., corrolated subquery) thus the subqueries cannot be +-- there is a lateral join (e.g., correlated subquery) thus the subqueries cannot be -- recursively planned, however it can be planned using the repartition planner SET citus.enable_repartition_joins to on; SELECT DISTINCT foo_inner_1.tenant_id FROM @@ -227,7 +227,7 @@ ORDER BY foo_inner_1.tenant_id; (10 rows) RESET citus.enable_repartition_joins; --- there is a lateral join (e.g., corrolated subquery) thus the subqueries cannot be +-- there is a lateral join (e.g., correlated subquery) thus the subqueries cannot be -- recursively planned, this one can not be planned by the repartion planner -- because of the IN query on a non unique column UPDATE @@ -263,7 +263,7 @@ FROM RETURNING *; DEBUG: generating subplan XXX_1 for subquery SELECT dept FROM recursive_dml_queries.second_distributed_table ERROR: complex joins are only supported when all distributed tables are co-located and joined on their distribution columns --- again a corrolated subquery +-- again a correlated subquery -- this time distribution key eq. exists -- however recursive planning is prevented due to correlated subqueries UPDATE diff --git a/src/test/regress/sql/aggregate_support.sql b/src/test/regress/sql/aggregate_support.sql index 7bde84200..bce20d014 100644 --- a/src/test/regress/sql/aggregate_support.sql +++ b/src/test/regress/sql/aggregate_support.sql @@ -200,7 +200,6 @@ select count(*) FROM ( RESET citus.task_executor_type; --- This fails due to table types not being managed properly select key, count(distinct aggdata) from aggdata group by key order by 1, 2; diff --git a/src/test/regress/sql/dml_recursive.sql b/src/test/regress/sql/dml_recursive.sql index f7ee3516d..33c1b057e 100644 --- a/src/test/regress/sql/dml_recursive.sql +++ b/src/test/regress/sql/dml_recursive.sql @@ -142,7 +142,7 @@ WHERE RETURNING distributed_table.*; --- there is a lateral join (e.g., corrolated subquery) thus the subqueries cannot be +-- there is a lateral join (e.g., correlated subquery) thus the subqueries cannot be -- recursively planned, however it can be planned using the repartition planner SET citus.enable_repartition_joins to on; SELECT DISTINCT foo_inner_1.tenant_id FROM @@ -173,7 +173,7 @@ ORDER BY foo_inner_1.tenant_id; RESET citus.enable_repartition_joins; --- there is a lateral join (e.g., corrolated subquery) thus the subqueries cannot be +-- there is a lateral join (e.g., correlated subquery) thus the subqueries cannot be -- recursively planned, this one can not be planned by the repartion planner -- because of the IN query on a non unique column UPDATE @@ -209,7 +209,7 @@ FROM RETURNING *; --- again a corrolated subquery +-- again a correlated subquery -- this time distribution key eq. exists -- however recursive planning is prevented due to correlated subqueries UPDATE