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
Is there an existing issue for the same feature request?
I have checked the existing issues.
Is your feature request related to a problem?
prepare st from 'select * from t where i = ?';
set @a = 42;
execute st using @a; // runs fine
mysql> explain execute st using @a;
ERROR 1064 (HY000): SQL parser error: You have an error in your SQL syntax; check the manual that corresponds to your MatrixOne server version for the right syntax to use. syntax error at line 1 column 25 near " using @a";
mysql>
Describe the feature you'd like
explain execute st using @A;
should print explain plan
Describe implementation you've considered
No response
Documentation, Adoption, Use Case, Migration Strategy
No response
Additional information
No response
The text was updated successfully, but these errors were encountered:
prepare st1 from'select * from test.t2 where a = ? and b = ?';
set @a =1, @b=1;
execute st1 using @a,@b;
explain force execute st1 using @a,@b;
explain verbose force execute st1 using @a,@b;
explain analyze force execute st1 using @a,@b;
explain analyze verbose force execute st1 using @a,@b;
//. ===
prepare st2 from'select * from test.t2 where a = 1 and b = 1';
execute st2;
explain force execute st2;
explain verbose force execute st2;
explain analyze force execute st2;
explain analyze verbose force execute st2;
Is there an existing issue for the same feature request?
Is your feature request related to a problem?
Describe the feature you'd like
explain execute st using @A;
should print explain plan
Describe implementation you've considered
No response
Documentation, Adoption, Use Case, Migration Strategy
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: