mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
After merge fixes
This commit is contained in:
@ -1570,8 +1570,8 @@ ulong mysql_hex_string(char *to, const char *from, ulong length)
|
|||||||
|
|
||||||
for (end= from + length; from < end; from++)
|
for (end= from + length; from < end; from++)
|
||||||
{
|
{
|
||||||
*to++= _dig_vec[((unsigned char) *from) >> 4];
|
*to++= _dig_vec_upper[((unsigned char) *from) >> 4];
|
||||||
*to++= _dig_vec[((unsigned char) *from) & 0x0F];
|
*to++= _dig_vec_upper[((unsigned char) *from) & 0x0F];
|
||||||
}
|
}
|
||||||
*to= '\0';
|
*to= '\0';
|
||||||
return (ulong) (to-to0);
|
return (ulong) (to-to0);
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
slave stop;
|
stop slave;
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
reset master;
|
reset master;
|
||||||
reset slave;
|
reset slave;
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
slave start;
|
start slave;
|
||||||
create table t1 (a int) type=innodb;
|
create table t1 (a int) engine=innodb;
|
||||||
begin;
|
begin;
|
||||||
insert into t1 values(1);
|
insert into t1 values(1);
|
||||||
flush tables with read lock;
|
flush tables with read lock;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
source include/master-slave.inc;
|
source include/master-slave.inc;
|
||||||
source include/have_innodb.inc;
|
source include/have_innodb.inc;
|
||||||
create table t1 (a int) type=innodb;
|
create table t1 (a int) engine=innodb;
|
||||||
begin;
|
begin;
|
||||||
insert into t1 values(1);
|
insert into t1 values(1);
|
||||||
flush tables with read lock;
|
flush tables with read lock;
|
||||||
|
Reference in New Issue
Block a user