mirror of
https://github.com/MariaDB/server.git
synced 2026-05-01 12:45:41 +02:00
Merge bk-internal.mysql.com:/home/bk/mysql-5.1
into siva.hindu.god:/usr/home/tim/m/bk/merge-51 (which is mysql-5.1-new-maint team tree) include/my_base.h: Auto merged mysql-test/extra/rpl_tests/rpl_loaddata.test: Auto merged mysql-test/lib/mtr_cases.pl: Auto merged mysql-test/r/rpl_loaddata.result: Auto merged mysql-test/r/sp-security.result: Auto merged mysql-test/t/sp-security.test: Auto merged mysql-test/lib/mtr_report.pl: merge of mysql-5.1 -> mysql-5.1-new-maint mysql-test/mysql-test-run.pl: merge of mysql-5.1 -> mysql-5.1-new-maint
This commit is contained in:
commit
690101ad88
128 changed files with 5572 additions and 2136 deletions
|
|
@ -20,8 +20,11 @@ connection slave;
|
|||
reset master;
|
||||
connection master;
|
||||
|
||||
select last_insert_id();
|
||||
create table t1(a int not null auto_increment, b int, primary key(a) );
|
||||
load data infile '../std_data_ln/rpl_loaddata.dat' into table t1;
|
||||
# verify that LAST_INSERT_ID() is set by LOAD DATA INFILE
|
||||
select last_insert_id();
|
||||
|
||||
create temporary table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60));
|
||||
load data infile '../std_data_ln/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by '\n##\n' starting by '>' ignore 1 lines;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue