diff options
author | dlenev@brandersnatch.localdomain <> | 2005-03-16 04:32:47 +0300 |
---|---|---|
committer | dlenev@brandersnatch.localdomain <> | 2005-03-16 04:32:47 +0300 |
commit | f1691140421ecdb37e4706add568b88162a9ec37 (patch) | |
tree | 3fa8e5965f7758c8da8c6827d247549163f01785 /mysql-test/t/insert_select.test | |
parent | 3f6fdabe4f5f8d5b2ce91e8842809a8e45e1ba87 (diff) | |
download | mariadb-git-f1691140421ecdb37e4706add568b88162a9ec37.tar.gz |
WL#874 "Extended LOAD DATA".
Now one can use user variables as target for data loaded from file
(besides table's columns). Also LOAD DATA got new SET-clause in which
one can specify values for table columns as expressions.
For example the following is possible:
LOAD DATA INFILE 'words.dat' INTO TABLE t1 (a, @b) SET c = @b + 1;
This patch also implements new way of replicating LOAD DATA.
Now we do it similarly to other queries.
We store LOAD DATA query in new Execute_load_query event
(which is last in the sequence of events representing LOAD DATA).
When we are executing this event we simply rewrite part of query which
holds name of file (we use name of temporary file) and then execute it
as usual query. In the beggining of this sequence we use Begin_load_query
event which is almost identical to Append_file event
Diffstat (limited to 'mysql-test/t/insert_select.test')
-rw-r--r-- | mysql-test/t/insert_select.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/insert_select.test b/mysql-test/t/insert_select.test index a5b163b3533..371df339b57 100644 --- a/mysql-test/t/insert_select.test +++ b/mysql-test/t/insert_select.test @@ -85,6 +85,7 @@ insert into t1 select * from t2; # verify the binlog : let $VERSION=`select version()`; --replace_result $VERSION VERSION +--replace_column 2 # 5 # show binlog events; select * from t1; drop table t1, t2; @@ -99,6 +100,7 @@ create table t2(unique(a)) select a from t1; # The above should produce an error, *and* not appear in the binlog let $VERSION=`select version()`; --replace_result $VERSION VERSION +--replace_column 2 # 5 # show binlog events; drop table t1; |