blob: e175a5753f050fb8b53d776d9f7cb8e1d846387e (
plain) (
blame)
1
2
3
4
5
6
|
/* custom error:Empty result*/
-- Accessing absent object member will cause empty result in lax mode
$json = CAST("{}" as Json);
SELECT
JSON_QUERY($json, "lax $.key" ERROR ON EMPTY);
|