diff options
author | Alexander Barkov <bar@mysql.com> | 2009-10-14 17:10:22 +0500 |
---|---|---|
committer | Alexander Barkov <bar@mysql.com> | 2009-10-14 17:10:22 +0500 |
commit | 4def52165d3724080793a752f244e56aea3aecc0 (patch) | |
tree | f53ec25db050ef6cc51cc723cdcf01685b276759 /mysql-test/r/loadxml.result | |
parent | 93c885bd36569b5b2bd7c85e497ecf9830e848de (diff) | |
download | mariadb-git-4def52165d3724080793a752f244e56aea3aecc0.tar.gz |
A postfix for backporting WL#1397 convert XML -> SQL
mysql-test/r/loadxml.result
mysql-test/t/loadxml.test
Fixing non-deterministic test results
sql/sql_yacc.yy
Initializing fname_first using get_tok_end() instead of get_ptr().
The latter is grammar-dependant. The former is not.
Diffstat (limited to 'mysql-test/r/loadxml.result')
-rw-r--r-- | mysql-test/r/loadxml.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/loadxml.result b/mysql-test/r/loadxml.result index dc2392e5593..d7967a105f8 100644 --- a/mysql-test/r/loadxml.result +++ b/mysql-test/r/loadxml.result @@ -61,8 +61,8 @@ create table t2(fl text); LOAD XML LOCAL INFILE "$MYSQLTEST_VARDIR/tmp/loadxml-dump.xml" INTO TABLE t2 ROWS IDENTIFIED BY '<person>';; show processlist; Id User Host db Command Time State Info -2 root localhost test Query 0 NULL show processlist -5 root localhost test Query 3 Reading from net LOAD XML LOCAL INFILE "$MYSQLTEST_VARDIR/tmp/loadxml-dump.xml" INTO TABLE t2 ROWS IDENTIFIED BY '<p +# root localhost test Query # NULL show processlist +# root localhost test Query # Reading from net LOAD XML LOCAL INFILE "$MYSQLTEST_VARDIR/tmp/loadxml-dump.xml" INTO TABLE t2 ROWS IDENTIFIED BY '<p drop table t1; drop table t2; create table t1 ( |