diff options
author | Jim Winstead <jimw@mysql.com> | 2009-05-19 15:26:57 -0700 |
---|---|---|
committer | Jim Winstead <jimw@mysql.com> | 2009-05-19 15:26:57 -0700 |
commit | 1c9e45c3c4904e1e81132f7c87e3abbf7d50c506 (patch) | |
tree | 46c72146dc02874535a5528e4fa92ed780b07912 /mysql-test/r/mysqldump.result | |
parent | 86dc69e04591127f2ca2cbae24d57dc1615037de (diff) | |
download | mariadb-git-1c9e45c3c4904e1e81132f7c87e3abbf7d50c506.tar.gz |
Table identifiers and file names were not quoted and escaped correctly by
mysqlimport. (Bug #28071)
Diffstat (limited to 'mysql-test/r/mysqldump.result')
-rw-r--r-- | mysql-test/r/mysqldump.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result index b48b6c9d87f..55a251a5b84 100644 --- a/mysql-test/r/mysqldump.result +++ b/mysql-test/r/mysqldump.result @@ -4439,6 +4439,16 @@ drop view v1; drop table t1; drop view v1; drop table t1; +# +# Bug#28071 mysqlimport does not quote or escape table name +# +drop table if exists `load`; +create table `load` (a varchar(255)); +test.load: Records: 70 Deleted: 0 Skipped: 0 Warnings: 0 +select count(*) from `load`; +count(*) +70 +drop table `load`; SET @@GLOBAL.CONCURRENT_INSERT = @OLD_CONCURRENT_INSERT; # # End of 5.1 tests |