mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
Bug#27934 test client_xml misssing initialization
Problem: missing initialization, if the previous test fails leaving table t1, client_xml fails as well. Fix: adding initialization.
This commit is contained in:
parent
5dfdccab24
commit
e390f843d5
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
drop table if exists t1;
|
||||
create table t1 (
|
||||
`a&b` int,
|
||||
`a<b` int,
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
# Can't run with embedded server
|
||||
-- source include/not_embedded.inc
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
# Test of the xml output of the 'mysql' and 'mysqldump' clients -- makes
|
||||
# sure that basic encoding issues are handled properly
|
||||
create table t1 (
|
||||
|
|
Loading…
Reference in a new issue