1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Merge bk-internal.mysql.com:/home/bk/mysql-4.0

into narttu.mysql.fi:/my/mysql-4.0


client/mysqltest.c:
  Auto merged
sql/sql_load.cc:
  Auto merged
This commit is contained in:
unknown
2003-08-22 04:08:16 +03:00
18 changed files with 180 additions and 76 deletions

View File

@@ -767,9 +767,13 @@ int READ_INFO::read_field()
row_end= to;
return 0;
}
/* Copy the found '"' character */
/*
The string didn't terminate yet.
Store back next character for the loop
*/
PUSH(chr);
chr='"';
/* copy the found term character to 'to' */
chr= found_enclosed_char;
}
else if (chr == field_term_char && found_enclosed_char == INT_MAX)
{