mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix for spelling miss and eol junk
client/mysqltest.c: Fix spelling error mysql-test/t/information_schema.test: Eol junk detected, added # mysql-test/t/rpl_slave_status.test: Missing ; mysql-test/t/sp.test: Eol junk detected, added # mysql-test/t/view.test: Eol junk detected, added #
This commit is contained in:
@ -2431,7 +2431,7 @@ int read_line(char *buf, int size)
|
||||
break;
|
||||
case R_LINE_START:
|
||||
/* Only accept start of comment if this is the first line in query */
|
||||
if ((*lineno == start_lineno) && (c == '#' || c == '-' || parsing_diabled))
|
||||
if ((*lineno == start_lineno) && (c == '#' || c == '-' || parsing_disabled))
|
||||
{
|
||||
state = R_COMMENT;
|
||||
}
|
||||
|
Reference in New Issue
Block a user