You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is a select statement having JSON_TABLE syntax with placeholders in place of constant data -
SELECT jt.* FROM
my_films,
JSON_TABLE (js, $1
PASSING $2 AS filter, $3 AS filter2
COLUMNS (
id FOR ORDINALITY,
kind text PATH '$.kind',
title text FORMAT JSON PATH '$.films[*].title' OMIT QUOTES,
director text PATH '$.films[*].director' KEEP QUOTES)) AS jt
this is the error comes while parsing this query using the Parse() function -
ERROR: only string constants are supported in JSON_TABLE path specification
cc: @lfittl@msepga
Is this a bug or an expected failure?
Do you think there's any workaround to be able to parse this statement?
The text was updated successfully, but these errors were encountered:
If there is a select statement having JSON_TABLE syntax with placeholders in place of constant data -
this is the error comes while parsing this query using the
Parse()
function -cc: @lfittl @msepga
Is this a bug or an expected failure?
Do you think there's any workaround to be able to parse this statement?
The text was updated successfully, but these errors were encountered: