summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2024-12-26 13:15:14 +0300
committerrobot-piglet <[email protected]>2024-12-26 13:36:50 +0300
commit98b351241c7fb7ee4caff0ee09598e54bec59fe5 (patch)
tree0f2f0af87d6b86821731825bbb1ee51c8cc1a96c /yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql
parent179a188c92e62f168719f4bb4bb9a8a464fb3d80 (diff)
Intermediate changes
commit_hash:d6e69042088451340ac37dd3d928f2cb483a54e9
Diffstat (limited to 'yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql')
-rw-r--r--yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql15
1 files changed, 0 insertions, 15 deletions
diff --git a/yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql b/yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql
deleted file mode 100644
index 2c6dfcf9b9e..00000000000
--- a/yql/essentials/tests/sql/suites/json/json_value/passing_exception.sql
+++ /dev/null
@@ -1,15 +0,0 @@
-/* syntax version 1 */
-/* postgres can not */
-/* custom error:Expected data or optional of data, but got: Tuple<Int32,Int32>*/
-
-$json = CAST(@@{
- "key": 123
-}@@ as Json);
-
--- Tuple type is not supported for variables
-SELECT
- JSON_VALUE(
- $json, "strict $var"
- PASSING
- AsTuple(1, 2) as var
- );