diff options
author | Shishir Jaiswal <shishir.j.jaiswal@oracle.com> | 2017-05-23 10:22:33 +0530 |
---|---|---|
committer | Shishir Jaiswal <shishir.j.jaiswal@oracle.com> | 2017-05-23 10:22:33 +0530 |
commit | 8c7e9aab054360ec192ce3cffb2c25aa16e25f10 (patch) | |
tree | be223f2157729be0a5d72c970fb5c49068143aba /sql/sql_load.cc | |
parent | 20addb05e58fdf822896f490fcaaf2ec5ed4bcb5 (diff) | |
download | mariadb-git-8c7e9aab054360ec192ce3cffb2c25aa16e25f10.tar.gz |
Bug#16212207 - LOAD XML INFILE PERFORMANCE WITH INDENTED
XML
Post-push fix for build failure on Linux machine
sles11-x86-64bit
Diffstat (limited to 'sql/sql_load.cc')
-rw-r--r-- | sql/sql_load.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_load.cc b/sql/sql_load.cc index a2c01c3b8a8..6d6dc8b55e8 100644 --- a/sql/sql_load.cc +++ b/sql/sql_load.cc @@ -1990,7 +1990,9 @@ int READ_INFO::read_xml() case '>': /* end tag - read tag value */ in_tag= false; /* Skip all whitespaces */ - while (' ' == (chr= my_tospace(GET))); + while (' ' == (chr= my_tospace(GET))) + { + } /* Push the first non-whitespace char back to Stack. This char would be read in the upcoming call to read_value() |