1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge from 4.1 to 5.0

This commit is contained in:
msvensson@neptunus.(none)
2005-09-23 14:37:22 +02:00
parent 02c7645cc1
commit d55eeed8fd
6 changed files with 11 additions and 18 deletions

View File

@ -76,6 +76,7 @@ select * from t1;
id
0
SET @@SQL_MODE=@OLD_SQL_MODE;
drop table t1;
create table t1 (a int default 100, b int, c varchar(60));
load data infile '../../std_data/rpl_loaddata.dat' into table t1 (a, @b) set b=@b+10, c=concat("b=",@b);
select * from t1;