aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/json/json_exists/on_error_exception.sql
blob: fbcaabcd77d2ba8b010df1054a9862eef12e1005 (plain) (blame)
1
2
3
4
5
6
/* custom error:Member not found*/

-- Accessing absent object member will cause jsonpath error in strict mode
$json = CAST("{}" as Json);
SELECT
    JSON_EXISTS($json, "strict $.key" ERROR ON ERROR);