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
My SQL, copying from MySQL doc with changes of the select sql to sth in my db: EXPLAIN FORMAT=JSON INTO @myselect SELECT a FROM ab1;
Parsing return error msg line 1:25 mismatched input '@myselect' expecting '@', and unable to parse the 'myselect' as an ID.
the rule for the INTO part:
explainInto
: INTO_SYMBOL AT_SIGN_SYMBOL textOrIdentifier
;
maybe need to recognize AT_TEXT_SUFFIX?
The text was updated successfully, but these errors were encountered:
My SQL, copying from MySQL doc with changes of the select sql to sth in my db:
EXPLAIN FORMAT=JSON INTO @myselect SELECT a FROM ab1;
Parsing return error msg
line 1:25 mismatched input '@myselect' expecting '@'
, and unable to parse the 'myselect' as an ID.the rule for the INTO part:
explainInto
: INTO_SYMBOL AT_SIGN_SYMBOL textOrIdentifier
;
maybe need to recognize AT_TEXT_SUFFIX?
The text was updated successfully, but these errors were encountered: