blob: 84a75105a915c259f44f1227df640dd470cc532b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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_EXISTS(
$json, "strict $var"
PASSING
AsTuple(1, 2) as var
);
|