aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/json/json_exists/passing.sql
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.com>2024-11-19 14:58:38 +0300
committerudovichenko-r <udovichenko-r@yandex-team.com>2024-11-19 15:16:27 +0300
commit24521403b1c44303e043ba540c09b1fe991c7474 (patch)
tree341d1e7206bc7c143d04d2d96f05b6dc0655606d /yql/essentials/tests/sql/suites/json/json_exists/passing.sql
parent72b3cd51dc3fb9d16975d353ea82fd85701393cc (diff)
downloadydb-24521403b1c44303e043ba540c09b1fe991c7474.tar.gz
YQL-19206 Move contrib/ydb/library/yql/tests/sql/suites -> yql/essentials/tests/sql/suites
commit_hash:d0ef1f92b09c94db7c2408f946d2a4c62b603f00
Diffstat (limited to 'yql/essentials/tests/sql/suites/json/json_exists/passing.sql')
-rw-r--r--yql/essentials/tests/sql/suites/json/json_exists/passing.sql102
1 files changed, 102 insertions, 0 deletions
diff --git a/yql/essentials/tests/sql/suites/json/json_exists/passing.sql b/yql/essentials/tests/sql/suites/json/json_exists/passing.sql
new file mode 100644
index 0000000000..0a71d78170
--- /dev/null
+++ b/yql/essentials/tests/sql/suites/json/json_exists/passing.sql
@@ -0,0 +1,102 @@
+/* syntax version 1 */
+/* postgres can not */
+
+$json = CAST(@@{
+ "key": 123
+}@@ as Json);
+
+-- Check all supported types for variables
+SELECT
+ -- Numeric types
+ JSON_EXISTS(
+ $json,
+ "strict $var1 + $var2 + $var3 + $var4 + $var5 + $var6 + $var7 + $var8 + $var9 + $var10"
+ PASSING
+ CAST(1 as Int8) as var1,
+ CAST(2 as Uint8) as var2,
+ CAST(3 as Int16) as var3,
+ CAST(4 as Uint16) as var4,
+ CAST(5 as Int32) as var5,
+ CAST(6 as Uint32) as var6,
+ CAST(7 as Int64) as var7,
+ CAST(8 as Uint64) as var8,
+ CAST(9 as Double) as var9,
+ CAST(10 as Float) as var10
+ ),
+ -- Time types
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ CAST(1582044622 as Datetime) as var
+ ),
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ CAST(1582044622 as Timestamp) as var
+ ),
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ CAST("2020-02-18" as Date) as var
+ ),
+ -- Utf8
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ CAST("привет" as Utf8) as var
+ ),
+ -- Bool
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ true as var
+ ),
+ -- Json
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ $json as var
+ ),
+ -- Nulls
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ Nothing(Int64?) as var
+ ),
+ JSON_EXISTS(
+ $json,
+ "strict $var"
+ PASSING
+ NULL as var
+ );
+
+-- Check various ways to pass variable name
+SELECT
+ JSON_EXISTS(
+ $json, "strict $var1"
+ PASSING
+ 123 as var1
+ ),
+ -- NOTE: VaR1 is not casted to upper-case VAR1 as standard expects
+ JSON_EXISTS(
+ $json, "strict $VaR1"
+ PASSING
+ 123 as VaR1
+ ),
+ JSON_EXISTS(
+ $json, "strict $var1"
+ PASSING
+ 123 as "var1"
+ ),
+ JSON_EXISTS(
+ $json, "strict $VaR1"
+ PASSING
+ 123 as "VaR1"
+ ); \ No newline at end of file