提交 b38133f5 编写于 作者: H Heikki Linnakangas

Fix and enable 'qp_functions_in_subquery_column' test.

When this test was ported over from TINC in commit 64f83aa8, I
accidentally left it out of 'greenplum_schedule'. Oops. It has somewhat
bitrotted since, due to changes in the error context messages. Fix the
bitrot, and enable the test in the schedule.
上级 fb55a1d9
......@@ -151,7 +151,7 @@ test: qp_olap_mdqa qp_misc gp_recursive_cte qp_dml_joins qp_dml_oids trigger_set
test: qp_misc_jiras qp_with_clause qp_executor qp_olap_windowerr qp_olap_window qp_derived_table qp_bitmapscan qp_dropped_cols
test: qp_with_functional_inlining qp_with_functional_noinlining
test: qp_functions_in_contexts_setup
test: qp_misc_rio_join_small qp_misc_rio qp_correlated_query qp_targeted_dispatch qp_gist_indexes2 qp_gist_indexes3 qp_gist_indexes4 qp_query_execution qp_functions_in_from qp_functions_in_select qp_functions_in_subquery qp_functions_in_subquery_constant qp_functions_in_with
test: qp_misc_rio_join_small qp_misc_rio qp_correlated_query qp_targeted_dispatch qp_gist_indexes2 qp_gist_indexes3 qp_gist_indexes4 qp_query_execution qp_functions_in_from qp_functions_in_select qp_functions_in_subquery qp_functions_in_subquery_column qp_functions_in_subquery_constant qp_functions_in_with
test: dpe qp_dpe qp_subquery qp_left_anti_semi_join qp_union_intersect qp_functions qp_functions_idf qp_regexp qp_resource_queue qp_orca_fallback
......
......@@ -42,10 +42,10 @@ SELECT * FROM foo, (SELECT func1_read_int_sql_vol(a) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_int_sql_stb(a) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_11.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(a) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(a) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_12.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(a) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(a) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_13.sql
begin;
......@@ -442,28 +442,28 @@ SELECT * FROM foo, (SELECT func1_read_int_sql_stb(func2_mod_int_stb(a)) from foo
rollback;
-- @description function_in_subqry_column_withfunc2_110.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_vol(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_vol(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_111.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_stb(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_stb(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_112.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_imm(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_nosql_imm(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_113.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_vol(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_vol(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_114.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_stb(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_stb(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_115.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_imm(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_sql_int_imm(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_116.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_read_int_vol(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_read_int_vol(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_117.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_read_int_stb(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_read_int_stb(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_118.sql
begin;
......@@ -476,22 +476,22 @@ SELECT * FROM foo, (SELECT func1_read_setint_sql_vol(func2_mod_int_stb(a)) from
rollback;
-- @description function_in_subqry_column_withfunc2_120.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_vol(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_vol(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_121.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_stb(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_stb(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_122.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_imm(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_nosql_imm(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_123.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_vol(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_vol(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_124.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_stb(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_stb(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_125.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_imm(a)) from foo) r order by 1,2,3;
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_sql_int_imm(a)) from foo) r order by 1,2,3;
-- @description function_in_subqry_column_withfunc2_126.sql
SELECT * FROM foo, (SELECT func1_read_setint_sql_stb(func2_read_int_vol(a)) from foo) r order by 1,2,3;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册