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 '123.4567' at line 1
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 '123.4567' at line 1
drop table t1,t2;
drop table t1,t2;
deallocate prepare stmt3;
deallocate prepare stmt4;
deallocate prepare stmt5;
PREPARE stmt1 FROM "select _utf8 'A' collate utf8_bin = ?";
PREPARE stmt1 FROM "select _utf8 'A' collate utf8_bin = ?";
set @var='A';
set @var='A';
EXECUTE stmt1 USING @var;
EXECUTE stmt1 USING @var;
...
@@ -252,6 +255,7 @@ set names latin1;
...
@@ -252,6 +255,7 @@ set names latin1;
execute ``;
execute ``;
1234
1234
1234
1234
deallocate prepare ``;
set names default;
set names default;
create table t1 (a varchar(10)) charset=utf8;
create table t1 (a varchar(10)) charset=utf8;
insert into t1 (a) values ('yahoo');
insert into t1 (a) values ('yahoo');
...
@@ -767,3 +771,107 @@ execute stmt using @a,@b;
...
@@ -767,3 +771,107 @@ execute stmt using @a,@b;
col1 col2
col1 col2
deallocate prepare stmt;
deallocate prepare stmt;
drop table t1;
drop table t1;
set @old_max_prepared_stmt_count= @@max_prepared_stmt_count;
"If non-zero: relay log will be rotated automatically when the size exceeds this value; if zero (the default): when the size exceeds max_binlog_size. 0 excepted, the minimum value for this variable is 4096.",
"If non-zero: relay log will be rotated automatically when the size exceeds this value; if zero (the default): when the size exceeds max_binlog_size. 0 excepted, the minimum value for this variable is 4096.",