summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-10-02 21:08:08 +0300
committerunknown <monty@hundin.mysql.fi>2001-10-02 21:08:08 +0300
commit77b021005ef3648501b3413ac5bce4a7db495cf0 (patch)
tree10d5cc825ed60eb9400958861f0101e212097efb /client
parent396490901c77e3fce3aa8ab12a34760f5928567e (diff)
downloadmariadb-git-77b021005ef3648501b3413ac5bce4a7db495cf0.tar.gz
Fixed bug in INSERT DELAYED
Fixed some problems in SHOW CREATE TABLE Fixed calculation of checksums in myisamchk Docs/manual.texi: ChangelogWh client/mysql.cc: Added comment myisam/mi_check.c: Fixed calcualtion of checksums sql/sql_insert.cc: Fixed bug in INSERT DELAYED sql/sql_show.cc: Fixed some problems in SHOW CREATE TABLE
Diffstat (limited to 'client')
-rw-r--r--client/mysql.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc
index 96536c9d5f0..5ae8df39863 100644
--- a/client/mysql.cc
+++ b/client/mysql.cc
@@ -937,7 +937,7 @@ static bool add_line(String &buffer,char *line,char *in_string)
{ // mSQL or postgreSQL style command ?
if (!(inchar = (uchar) *++pos))
break; // readline adds one '\'
- if (*in_string || inchar == 'N')
+ if (*in_string || inchar == 'N') // \N is short for NULL
{ // Don't allow commands in string
*out++='\\';
*out++= (char) inchar;