diff --git a/ibis/backends/bigquery/tests/unit/snapshots/test_compiler/test_to_timestamp_timezone/out.sql b/ibis/backends/bigquery/tests/unit/snapshots/test_compiler/test_to_timestamp_timezone/out.sql index 3e79c2e211794..0a958c9e7f905 100644 --- a/ibis/backends/bigquery/tests/unit/snapshots/test_compiler/test_to_timestamp_timezone/out.sql +++ b/ibis/backends/bigquery/tests/unit/snapshots/test_compiler/test_to_timestamp_timezone/out.sql @@ -1,3 +1,3 @@ SELECT - parse_timestamp('%F %Z', CONCAT(`t0`.`date_string_col`, ' America/New_York'), 'UTC') AS `StringToTimestamp_StringConcat_'%F %Z'` + parse_timestamp('%F %Z', CONCAT(`t0`.`date_string_col`, ' America/New_York'), 'UTC') AS `StringToTimestamp_StringConcat_date_string_col_' America_New_York'_'%F %Z'` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out1.sql b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out1.sql index ceb370f312cc4..78f06fa478ea3 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out1.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out1.sql @@ -1,3 +1,3 @@ SELECT - GREATEST("t0"."int_col", 10) AS "Greatest()" + GREATEST("t0"."int_col", 10) AS "Greatest((int_col, 10))" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out2.sql b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out2.sql index 85601ed38dad5..3e4d6b84046a1 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out2.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out2.sql @@ -1,3 +1,3 @@ SELECT - GREATEST("t0"."int_col", "t0"."bigint_col") AS "Greatest()" + GREATEST("t0"."int_col", "t0"."bigint_col") AS "Greatest((int_col, bigint_col))" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out3.sql b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out3.sql index 3dc8affe7d893..634d652661089 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out3.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out3.sql @@ -1,3 +1,3 @@ SELECT - LEAST("t0"."int_col", 10) AS "Least()" + LEAST("t0"."int_col", 10) AS "Least((int_col, 10))" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out4.sql b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out4.sql index 4f57aa348d166..c9c52a4ab713d 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out4.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_greatest_least/out4.sql @@ -1,3 +1,3 @@ SELECT - LEAST("t0"."int_col", "t0"."bigint_col") AS "Least()" + LEAST("t0"."int_col", "t0"."bigint_col") AS "Least((int_col, bigint_col))" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_string_column_find_in_set/out.sql b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_string_column_find_in_set/out.sql index d00ed4908b721..1517de613b95e 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_functions/test_string_column_find_in_set/out.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_functions/test_string_column_find_in_set/out.sql @@ -1,3 +1,3 @@ SELECT - indexOf(['a','b','c'], "t0"."string_col") - 1 AS "FindInSet(string_col)" + indexOf(['a','b','c'], "t0"."string_col") - 1 AS "FindInSet(string_col, ('a', 'b', 'c'))" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_operators/test_search_case/out.sql b/ibis/backends/clickhouse/tests/snapshots/test_operators/test_search_case/out.sql index 11569fc15843c..d0805b4ca8e62 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_operators/test_search_case/out.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_operators/test_search_case/out.sql @@ -5,5 +5,5 @@ SELECT WHEN "t0"."float_col" < 0 THEN "t0"."int_col" ELSE 0 - END AS "SearchedCase(0)" + END AS "SearchedCase((Greater(float_col, 0), Less(float_col, 0)), (Multiply(int_col, 2), int_col), 0)" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/clickhouse/tests/snapshots/test_operators/test_simple_case/out.sql b/ibis/backends/clickhouse/tests/snapshots/test_operators/test_simple_case/out.sql index 66d7aca5a83f8..78d80bb4acc66 100644 --- a/ibis/backends/clickhouse/tests/snapshots/test_operators/test_simple_case/out.sql +++ b/ibis/backends/clickhouse/tests/snapshots/test_operators/test_simple_case/out.sql @@ -1,3 +1,3 @@ SELECT - CASE "t0"."string_col" WHEN 'foo' THEN 'bar' WHEN 'baz' THEN 'qux' ELSE 'default' END AS "SimpleCase(string_col, 'default')" + CASE "t0"."string_col" WHEN 'foo' THEN 'bar' WHEN 'baz' THEN 'qux' ELSE 'default' END AS "SimpleCase(string_col, ('foo', 'baz'), ('bar', 'qux'), 'default')" FROM "functional_alltypes" AS "t0" \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false/out.sql index 461a8aa9f2428..5ff5a71e04ab4 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false/out.sql @@ -19,5 +19,5 @@ SELECT ) THEN 2 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_closed_right/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_closed_right/out.sql index 06537d8a9463f..29da4b5df0c5a 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_closed_right/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_closed_right/out.sql @@ -19,5 +19,5 @@ SELECT ) THEN 2 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_include_under_include_over/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_include_under_include_over/out.sql index b4aa949c85a5d..ebe6bc778751c 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_include_under_include_over/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/close_extreme_false_include_under_include_over/out.sql @@ -23,5 +23,5 @@ SELECT WHEN 50 <= `t0`.`f` THEN 4 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right/out.sql index cf3f70f2d6734..f032ce6adc79a 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right/out.sql @@ -19,5 +19,5 @@ SELECT ) THEN 2 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_close_extreme_false_include_under/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_close_extreme_false_include_under/out.sql index d59ea7900f17d..daeeb597272e3 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_close_extreme_false_include_under/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_close_extreme_false_include_under/out.sql @@ -21,5 +21,5 @@ SELECT ) THEN 3 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_include_over_include_under/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_include_over_include_under/out.sql index b0f5158c750df..32dd402e95f8f 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_include_over_include_under/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/closed_right_include_over_include_under/out.sql @@ -5,5 +5,5 @@ SELECT WHEN 10 < `t0`.`f` THEN 1 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/default/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/default/out.sql index c9ab2234f883c..33d919eb02753 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/default/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/default/out.sql @@ -19,5 +19,5 @@ SELECT ) THEN 2 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under0/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under0/out.sql index e6e63f334c08c..7f40c6c038997 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under0/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under0/out.sql @@ -5,5 +5,5 @@ SELECT WHEN 10 <= `t0`.`f` THEN 1 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under1/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under1/out.sql index 104dcc83014a6..ffd04b93d7d8d 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under1/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under1/out.sql @@ -5,5 +5,5 @@ SELECT WHEN 10 <= `t0`.`f` THEN 1 ELSE CAST(NULL AS TINYINT) - END AS INT) AS `Cast(Bucket(f), int32)` + END AS INT) AS `Cast(Bucket(f, ()), int32)` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under2/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under2/out.sql index f4661b51024a4..3bbb662cd0b64 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under2/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_over_include_under2/out.sql @@ -5,5 +5,5 @@ SELECT WHEN 10 <= `t0`.`f` THEN 1 ELSE CAST(NULL AS TINYINT) - END AS DOUBLE) AS `Cast(Bucket(f), float64)` + END AS DOUBLE) AS `Cast(Bucket(f, ()), float64)` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under/out.sql index 39a83640fe1b2..ddfaa467d7942 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under/out.sql @@ -21,5 +21,5 @@ SELECT ) THEN 3 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under_include_over/out.sql b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under_include_over/out.sql index 0dda250e0ef13..9b270497abae7 100644 --- a/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under_include_over/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_bucket_histogram/test_bucket_to_case/include_under_include_over/out.sql @@ -23,5 +23,5 @@ SELECT WHEN 50 < `t0`.`f` THEN 4 ELSE CAST(NULL AS TINYINT) - END AS `Bucket(f)` + END AS `Bucket(f, ())` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice/out.sql b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice/out.sql index 4890dcc7d0965..db94d5cf777f0 100644 --- a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`l_extendedprice`, 0) AS `Coalesce()` + COALESCE(`t0`.`l_extendedprice`, 0) AS `Coalesce((l_extendedprice, 0))` FROM `tpch_lineitem` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice_double/out.sql b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice_double/out.sql index 59bd466502bc1..59106ffcfc2a8 100644 --- a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice_double/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_extendedprice_double/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`l_extendedprice`, 0.0) AS `Coalesce()` + COALESCE(`t0`.`l_extendedprice`, 0.0) AS `Coalesce((l_extendedprice, 0.0))` FROM `tpch_lineitem` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_quantity/out.sql b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_quantity/out.sql index 3fa2c6486406a..4d27dbaf75eb1 100644 --- a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_quantity/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_decimal_fill_null_cast_arg/fill_null_l_quantity/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`l_quantity`, 0) AS `Coalesce()` + COALESCE(`t0`.`l_quantity`, 0) AS `Coalesce((l_quantity, 0))` FROM `tpch_lineitem` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_search_case/out.sql b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_search_case/out.sql index 086867ecdd77f..5120543c4e64d 100644 --- a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_search_case/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_search_case/out.sql @@ -5,5 +5,5 @@ SELECT WHEN `t0`.`c` < 0 THEN `t0`.`a` * 2 ELSE CAST(NULL AS BIGINT) - END AS `SearchedCase(Cast(None, int64))` + END AS `SearchedCase((Greater(f, 0), Less(c, 0)), (Multiply(d, 2), Multiply(a, 2)), Cast(None, int64))` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_simple_case/out.sql b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_simple_case/out.sql index bb9300299c729..efb410f978405 100644 --- a/ibis/backends/impala/tests/snapshots/test_case_exprs/test_simple_case/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_case_exprs/test_simple_case/out.sql @@ -1,3 +1,3 @@ SELECT - CASE `t0`.`g` WHEN 'foo' THEN 'bar' WHEN 'baz' THEN 'qux' ELSE 'default' END AS `SimpleCase(g, 'default')` + CASE `t0`.`g` WHEN 'foo' THEN 'bar' WHEN 'baz' THEN 'qux' ELSE 'default' END AS `SimpleCase(g, ('foo', 'baz'), ('bar', 'qux'), 'default')` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_columns/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_columns/out.sql index 37a2675f2b39b..417ca0b9fd85d 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_columns/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_columns/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`int_col`, `t0`.`bigint_col`) AS `Coalesce()` + COALESCE(`t0`.`int_col`, `t0`.`bigint_col`) AS `Coalesce((int_col, bigint_col))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_scalar/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_scalar/out.sql index d0f093f98b7a8..e9047dd974e44 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_scalar/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/coalesce_scalar/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`string_col`, 'foo') AS `Coalesce()` + COALESCE(`t0`.`string_col`, 'foo') AS `Coalesce((string_col, 'foo'))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_columns/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_columns/out.sql index d667c8a692964..613aacf8df995 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_columns/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_columns/out.sql @@ -1,3 +1,3 @@ SELECT - GREATEST(`t0`.`int_col`, `t0`.`bigint_col`) AS `Greatest()` + GREATEST(`t0`.`int_col`, `t0`.`bigint_col`) AS `Greatest((int_col, bigint_col))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_scalar/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_scalar/out.sql index 693db916250be..90198678b75cd 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_scalar/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/greatest_scalar/out.sql @@ -1,3 +1,3 @@ SELECT - GREATEST(`t0`.`string_col`, 'foo') AS `Greatest()` + GREATEST(`t0`.`string_col`, 'foo') AS `Greatest((string_col, 'foo'))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_columns/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_columns/out.sql index 90f4b2d35f1c3..d48a4af6094b4 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_columns/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_columns/out.sql @@ -1,3 +1,3 @@ SELECT - LEAST(`t0`.`int_col`, `t0`.`bigint_col`) AS `Least()` + LEAST(`t0`.`int_col`, `t0`.`bigint_col`) AS `Least((int_col, bigint_col))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_scalar/out.sql b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_scalar/out.sql index 8260947a866ef..0d4757e052430 100644 --- a/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_scalar/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_coalesce_greater_least/test_varargs_functions/least_scalar/out.sql @@ -1,3 +1,3 @@ SELECT - LEAST(`t0`.`string_col`, 'foo') AS `Least()` + LEAST(`t0`.`string_col`, 'foo') AS `Least((string_col, 'foo'))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/isin/out.sql b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/isin/out.sql index d0c44759597f7..769b1e5d4c9c0 100644 --- a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/isin/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/isin/out.sql @@ -1,3 +1,3 @@ SELECT - `t0`.`g` IN ('foo', 'bar', 'baz') AS `InValues(g)` + `t0`.`g` IN ('foo', 'bar', 'baz') AS `InValues(g, ('foo', 'bar', 'baz'))` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/notin/out.sql b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/notin/out.sql index 1962710dd06ec..46d5203a6744d 100644 --- a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/notin/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_field_in_literals/notin/out.sql @@ -1,5 +1,5 @@ SELECT NOT ( `t0`.`g` IN ('foo', 'bar', 'baz') - ) AS `Not(InValues(g))` + ) AS `Not(InValues(g, ('foo', 'bar', 'baz')))` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/isin/out.sql b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/isin/out.sql index 5e82e8ab1e24b..266fb99d15461 100644 --- a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/isin/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/isin/out.sql @@ -1,3 +1,3 @@ SELECT - 2 IN (`t0`.`a`, `t0`.`b`, `t0`.`c`) AS `InValues(2)` + 2 IN (`t0`.`a`, `t0`.`b`, `t0`.`c`) AS `InValues(2, (a, b, c))` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/notin/out.sql b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/notin/out.sql index 5eb7de11190a1..027462be7482e 100644 --- a/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/notin/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_in_not_in/test_literal_in_fields/notin/out.sql @@ -1,5 +1,5 @@ SELECT NOT ( 2 IN (`t0`.`a`, `t0`.`b`, `t0`.`c`) - ) AS `Not(InValues(2))` + ) AS `Not(InValues(2, (a, b, c)))` FROM `alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_multiple/out.sql b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_multiple/out.sql index 614cf9e0c23cc..79cd81f715f1a 100644 --- a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_multiple/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_multiple/out.sql @@ -1,3 +1,3 @@ SELECT - FIND_IN_SET(`t0`.`string_col`, CONCAT_WS(',', 'a', 'b')) - 1 AS `FindInSet(string_col)` + FIND_IN_SET(`t0`.`string_col`, CONCAT_WS(',', 'a', 'b')) - 1 AS `FindInSet(string_col, ('a', 'b'))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_single/out.sql b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_single/out.sql index 1affe459d9a1c..7c91d1c7a0e1e 100644 --- a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_single/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_builtins/find_in_set_single/out.sql @@ -1,3 +1,3 @@ SELECT - FIND_IN_SET(`t0`.`string_col`, CONCAT_WS(',', 'a')) - 1 AS `FindInSet(string_col)` + FIND_IN_SET(`t0`.`string_col`, CONCAT_WS(',', 'a')) - 1 AS `FindInSet(string_col, ('a',))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_join/out.sql b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_join/out.sql index 495885e4d1466..b02acfd501ab1 100644 --- a/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_join/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_string_builtins/test_string_join/out.sql @@ -1,2 +1,2 @@ SELECT - CONCAT_WS(',', 'a', 'b') AS `StringJoin(',')` \ No newline at end of file + CONCAT_WS(',', 'a', 'b') AS `StringJoin(('a', 'b'), ',')` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/double_col-zero_ifnull/out.sql b/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/double_col-zero_ifnull/out.sql index 50332619efc86..3981ea70292ac 100644 --- a/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/double_col-zero_ifnull/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/double_col-zero_ifnull/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`double_col`, 0) AS `Coalesce()` + COALESCE(`t0`.`double_col`, 0) AS `Coalesce((double_col, 0))` FROM `functional_alltypes` AS `t0` \ No newline at end of file diff --git a/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/int_col-zero_ifnull/out.sql b/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/int_col-zero_ifnull/out.sql index 98cd6d13641fa..b434baa9c2358 100644 --- a/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/int_col-zero_ifnull/out.sql +++ b/ibis/backends/impala/tests/snapshots/test_unary_builtins/test_numeric_unary_builtins/int_col-zero_ifnull/out.sql @@ -1,3 +1,3 @@ SELECT - COALESCE(`t0`.`int_col`, 0) AS `Coalesce()` + COALESCE(`t0`.`int_col`, 0) AS `Coalesce((int_col, 0))` FROM `functional_alltypes` AS `t0` \ No newline at end of file