1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Table identifiers and file names were not quoted and escaped correctly by

mysqlimport. (Bug #28071)
This commit is contained in:
Jim Winstead
2009-05-19 15:26:57 -07:00
parent eb1261502c
commit 16aeb5ad3d
3 changed files with 44 additions and 5 deletions

View File

@ -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