diff options
author | vitya-smirnov <[email protected]> | 2025-09-03 10:38:53 +0300 |
---|---|---|
committer | vitya-smirnov <[email protected]> | 2025-09-03 10:54:15 +0300 |
commit | 2bbd45380bf7216ab2b9381be64acc1b0545eaa8 (patch) | |
tree | 4b9d337f756c46031c89a83d209397c31fbe8262 /yql/essentials/tests/sql | |
parent | 8ae12a8e459adc1a72567be9e2e496bc77c837b4 (diff) |
YQL-20368: Improve unimplemented literal error
commit_hash:27dc40f323e5d24af0dae4f3917a63248f8f8386
Diffstat (limited to 'yql/essentials/tests/sql')
-rw-r--r-- | yql/essentials/tests/sql/sql2yql/canondata/result.json | 7 | ||||
-rw-r--r-- | yql/essentials/tests/sql/suites/expr/current_time.sqlx | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/yql/essentials/tests/sql/sql2yql/canondata/result.json b/yql/essentials/tests/sql/sql2yql/canondata/result.json index e2c5d3c4ffc..b61726fbd28 100644 --- a/yql/essentials/tests/sql/sql2yql/canondata/result.json +++ b/yql/essentials/tests/sql/sql2yql/canondata/result.json @@ -12809,6 +12809,13 @@ "uri": "https://{canondata_backend}/1937429/434276f26b2857be3c5ad3fdbbf877d2bf775ac5/resource.tar.gz#test_sql_negative.test_expr-as_tuple_named-default.txt_/err_file.out" } ], + "test_sql_negative.test[expr-current_time-default.txt]": [ + { + "checksum": "e18bc91c98913889f1a6dabf1843205d", + "size": 82, + "uri": "https://{canondata_backend}/1916746/dc0c93d2ba1a23d003aea348bb48894fb438bdca/resource.tar.gz#test_sql_negative.test_expr-current_time-default.txt_/err_file.out" + } + ], "test_sql_negative.test[flatten_by-struct_with_wrong_correlation-default.txt]": [ { "checksum": "5362cc94a32ae614cc3808035e96d473", diff --git a/yql/essentials/tests/sql/suites/expr/current_time.sqlx b/yql/essentials/tests/sql/suites/expr/current_time.sqlx new file mode 100644 index 00000000000..36e73a62621 --- /dev/null +++ b/yql/essentials/tests/sql/suites/expr/current_time.sqlx @@ -0,0 +1,3 @@ +SELECT + CURRENT_TIME +; |