diff options
author | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2020-12-21 16:24:28 +0700 |
---|---|---|
committer | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2020-12-21 16:24:28 +0700 |
commit | 4c044bd946fe37a4071b4e3cf90e6182b13d25bd (patch) | |
tree | 3a2a99db38849fea6f352a06b5951fdb1bb5446e | |
parent | 3f4ed8382666e4f46da702cd7dd449fe9b640967 (diff) | |
download | mariadb-git-4c044bd946fe37a4071b4e3cf90e6182b13d25bd.tar.gz |
MDEV-16708: Unsupported commands for prepared statements
Updated result file for the main.ps test
-rw-r--r-- | mysql-test/main/ps.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/ps.result b/mysql-test/main/ps.result index 22e6880a4f7..1e631f3e3e2 100644 --- a/mysql-test/main/ps.result +++ b/mysql-test/main/ps.result @@ -4936,7 +4936,7 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp PREPARE stmt FROM CONCAT(NULL); ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NULL' at line 1 EXECUTE IMMEDIATE ? USING 'SELECT 1'; -ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '? USING 'SELECT 1'' at line 1 +Got one of the listed errors EXECUTE IMMEDIATE 10; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '10' at line 1 EXECUTE IMMEDIATE TIME'10:20:30'; |