Current Path : /home/usr.opt/mysql57/mysql-test/suite/sysschema/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : /home/usr.opt/mysql57/mysql-test/suite/sysschema/r/pr_execute_prepared_stmt.result |
SET @sql := "CREATE TABLE test.t1 (i INT)"; CALL sys.execute_prepared_stmt(@sql); SHOW CREATE TABLE test.t1; Table Create Table t1 CREATE TABLE `t1` ( `i` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 SET @sql := CONCAT('INSERT INTO test.t1 VALUES (', 1, ')'); CALL sys.execute_prepared_stmt(@sql); SELECT * FROM test.t1; i 1 SET @sql := "DROP TABLE test.t1"; CALL sys.execute_prepared_stmt(@sql); SHOW TABLES; Tables_in_test SET @sql = NULL; CALL sys.execute_prepared_stmt(NULL); ERROR 45000: The @sys.execute_prepared_stmt.sql must contain a query CALL sys.execute_prepared_stmt('foo'); ERROR 45000: The @sys.execute_prepared_stmt.sql must contain a query