mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
This commit is contained in:
@ -19,7 +19,7 @@ n
|
|||||||
3
|
3
|
||||||
4
|
4
|
||||||
5
|
5
|
||||||
show binlog events from 95;
|
show binlog events from 96;
|
||||||
Log_name Pos Event_type Server_id End_log_pos Info
|
Log_name Pos Event_type Server_id End_log_pos Info
|
||||||
master-bin.000001 # Query 1 # drop database if exists mysqltest
|
master-bin.000001 # Query 1 # drop database if exists mysqltest
|
||||||
master-bin.000001 # Query 1 # create database mysqltest
|
master-bin.000001 # Query 1 # create database mysqltest
|
||||||
|
@ -24,6 +24,6 @@ sync_slave_with_master;
|
|||||||
select * from mysqltest.t1;
|
select * from mysqltest.t1;
|
||||||
connection master;
|
connection master;
|
||||||
--replace_column 2 # 5 #
|
--replace_column 2 # 5 #
|
||||||
show binlog events from 95;
|
show binlog events from 96;
|
||||||
drop database mysqltest;
|
drop database mysqltest;
|
||||||
sync_slave_with_master;
|
sync_slave_with_master;
|
||||||
|
@ -72,7 +72,7 @@ private:
|
|||||||
return errorcode otherwise
|
return errorcode otherwise
|
||||||
*/
|
*/
|
||||||
uint convert_row_to_internal_format(byte *buf, MYSQL_ROW row);
|
uint convert_row_to_internal_format(byte *buf, MYSQL_ROW row);
|
||||||
bool ha_federated::create_where_from_key(String *to, KEY *key_info, const byte *key, uint key_length);
|
bool create_where_from_key(String *to, KEY *key_info, const byte *key, uint key_length);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ha_federated(TABLE *table): handler(table),
|
ha_federated(TABLE *table): handler(table),
|
||||||
|
@ -5151,8 +5151,8 @@ void mysql_parse(THD *thd, char *inBuf, uint length)
|
|||||||
PROCESSLIST.
|
PROCESSLIST.
|
||||||
Note that we don't need LOCK_thread_count to modify query_length.
|
Note that we don't need LOCK_thread_count to modify query_length.
|
||||||
*/
|
*/
|
||||||
if (lex->found_colon &&
|
if (lex->found_semicolon &&
|
||||||
(thd->query_length= (ulong)(lex->found_colon - thd->query)))
|
(thd->query_length= (ulong)(lex->found_semicolon - thd->query)))
|
||||||
thd->query_length--;
|
thd->query_length--;
|
||||||
/* Actually execute the query */
|
/* Actually execute the query */
|
||||||
mysql_execute_command(thd);
|
mysql_execute_command(thd);
|
||||||
|
Reference in New Issue
Block a user