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
Bug#35964157 mysql 8.1.0/8.2.0, mysqld got signal 11, when send sql, show parse_tre
SHOW PARSE_TREE is only supported for SELECT statements.
Return ER_NOT_SUPPORTED_YET for all other kinds of statements.
Change-Id: I994af8dee925936fba3beb042d70ba9bba3caf3c
Copy file name to clipboardExpand all lines: mysql-test/r/show_parse_tree.result
+8
Original file line number
Diff line number
Diff line change
@@ -2577,3 +2577,11 @@ SHOW PARSE_TREE CREATE TABLE tab(id INT);
2577
2577
ERROR 42000: This version of MySQL doesn't yet support 'Parse tree display of this statement'
2578
2578
SHOW PARSE_TREE CREATE TABLE tab(id INVALID_SYNTAX);
2579
2579
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INVALID_SYNTAX)' at line 1
2580
+
#
2581
+
# Bug#35964157 mysql 8.1.0/8.2.0, mysqld got signal 11,
2582
+
# when send sql, show parse_tre
2583
+
#
2584
+
SHOW PARSE_TREE SET @b:=(SELECT a FROM t);
2585
+
ERROR 42000: This version of MySQL doesn't yet support 'Parse tree display of this statement'
2586
+
SHOW PARSE_TREE CREATE SCHEMA s1;
2587
+
ERROR 42000: This version of MySQL doesn't yet support 'Parse tree display of this statement'
0 commit comments