passing_exception.sql 283 B

12345678910111213
  1. /* custom error:Expected data or optional of data, but got: Tuple<Int32,Int32>*/
  2. $json = CAST(@@{
  3. "key": 123
  4. }@@ as Json);
  5. -- Tuple type is not supported for variables
  6. SELECT
  7. JSON_EXISTS(
  8. $json, "strict $var"
  9. PASSING
  10. AsTuple(1, 2) as var
  11. );