mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into narttu.mysql.fi:/my/mysql-4.0 BitKeeper/etc/logging_ok: auto-union sql/log_event.cc: Auto merged
This commit is contained in:
@ -94,6 +94,7 @@ tonu@volk.internalnet
|
|||||||
tonu@x153.internalnet
|
tonu@x153.internalnet
|
||||||
tonu@x3.internalnet
|
tonu@x3.internalnet
|
||||||
venu@work.mysql.com
|
venu@work.mysql.com
|
||||||
|
vva@eagle.mysql.r18.ru
|
||||||
vva@genie.(none)
|
vva@genie.(none)
|
||||||
walrus@kishkin.ru
|
walrus@kishkin.ru
|
||||||
walrus@mysql.com
|
walrus@mysql.com
|
||||||
|
@ -6,8 +6,19 @@ drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|||||||
slave start;
|
slave start;
|
||||||
create table t1(a int not null auto_increment, b int, primary key(a) );
|
create table t1(a int not null auto_increment, b int, primary key(a) );
|
||||||
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
||||||
|
create temporary table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60));
|
||||||
|
load data infile '../../std_data/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by '\n##\n' ignore 1 lines;
|
||||||
|
create table t3 (day date,id int(9),category enum('a','b','c'),name varchar(60));
|
||||||
|
insert into t3 select * from t2;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
a b
|
a b
|
||||||
1 10
|
1 10
|
||||||
2 15
|
2 15
|
||||||
|
select * from t3;
|
||||||
|
day id category name
|
||||||
|
2003-02-22 2461 b a a a @ % ' " a
|
||||||
|
2003-03-22 2161 c asdf
|
||||||
|
2003-04-22 2416 a bbbbb
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
drop table t2;
|
||||||
|
drop table t3;
|
||||||
|
@ -1,16 +1,34 @@
|
|||||||
# See if replication of a "LOAD DATA in an autoincrement column"
|
# See if replication of a "LOAD DATA in an autoincrement column"
|
||||||
# Honours autoincrement values
|
# Honours autoincrement values
|
||||||
# i.e. if the master and slave have the same sequence
|
# i.e. if the master and slave have the same sequence
|
||||||
|
#
|
||||||
|
# check replication of load data for temporary tables with additional parameters
|
||||||
|
#
|
||||||
source include/master-slave.inc;
|
source include/master-slave.inc;
|
||||||
|
|
||||||
create table t1(a int not null auto_increment, b int, primary key(a) );
|
create table t1(a int not null auto_increment, b int, primary key(a) );
|
||||||
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
||||||
|
|
||||||
|
create temporary table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60));
|
||||||
|
#load data infile '../../std_data/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionaly enclosed by '%' escaped by '@' lines terminated by '\n%%\n' ignore 1 lines;
|
||||||
|
load data infile '../../std_data/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by '\n##\n' ignore 1 lines;
|
||||||
|
|
||||||
|
create table t3 (day date,id int(9),category enum('a','b','c'),name varchar(60));
|
||||||
|
insert into t3 select * from t2;
|
||||||
|
|
||||||
save_master_pos;
|
save_master_pos;
|
||||||
connection slave;
|
connection slave;
|
||||||
sync_with_master;
|
sync_with_master;
|
||||||
select * from t1;
|
|
||||||
|
select * from t1;
|
||||||
|
select * from t3;
|
||||||
|
|
||||||
connection master;
|
connection master;
|
||||||
|
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
drop table t2;
|
||||||
|
drop table t3;
|
||||||
|
|
||||||
save_master_pos;
|
save_master_pos;
|
||||||
connection slave;
|
connection slave;
|
||||||
sync_with_master;
|
sync_with_master;
|
||||||
|
@ -1868,6 +1868,11 @@ int Load_log_event::exec_event(NET* net, struct st_relay_log_info* rli,
|
|||||||
String line_term(sql_ex.line_term,sql_ex.line_term_len);
|
String line_term(sql_ex.line_term,sql_ex.line_term_len);
|
||||||
String line_start(sql_ex.line_start,sql_ex.line_start_len);
|
String line_start(sql_ex.line_start,sql_ex.line_start_len);
|
||||||
String escaped(sql_ex.escaped,sql_ex.escaped_len);
|
String escaped(sql_ex.escaped,sql_ex.escaped_len);
|
||||||
|
ex.field_term= &field_term;
|
||||||
|
ex.enclosed= &enclosed;
|
||||||
|
ex.line_term= &line_term;
|
||||||
|
ex.line_start= &line_start;
|
||||||
|
ex.escaped= &escaped;
|
||||||
|
|
||||||
ex.opt_enclosed = (sql_ex.opt_flags & OPT_ENCLOSED_FLAG);
|
ex.opt_enclosed = (sql_ex.opt_flags & OPT_ENCLOSED_FLAG);
|
||||||
if (sql_ex.empty_flags & FIELD_TERM_EMPTY)
|
if (sql_ex.empty_flags & FIELD_TERM_EMPTY)
|
||||||
@ -1876,7 +1881,7 @@ int Load_log_event::exec_event(NET* net, struct st_relay_log_info* rli,
|
|||||||
ex.skip_lines = skip_lines;
|
ex.skip_lines = skip_lines;
|
||||||
List<Item> field_list;
|
List<Item> field_list;
|
||||||
set_fields(field_list);
|
set_fields(field_list);
|
||||||
thd->slave_proxy_id = thd->thread_id;
|
thd->slave_proxy_id = thread_id;
|
||||||
if (net)
|
if (net)
|
||||||
{
|
{
|
||||||
// mysql_load will use thd->net to read the file
|
// mysql_load will use thd->net to read the file
|
||||||
|
Reference in New Issue
Block a user