Commit 8c7e9aab authored by Shishir Jaiswal's avatar Shishir Jaiswal

Bug#16212207 - LOAD XML INFILE PERFORMANCE WITH INDENTED

               XML

Post-push fix for build failure on Linux machine
sles11-x86-64bit
parent 20addb05
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment