diff options
author | unknown <bell@sanja.is.com.ua> | 2004-11-14 10:25:38 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-11-14 10:25:38 +0200 |
commit | 83f6cae4fb58b6a6f004741099eb35ffedd67eeb (patch) | |
tree | 46acf8a5a0349ad55c67b6d33a185370eda7d16f /sql/sql_parse.cc | |
parent | 805dc7c3703ad5ff0a28457b0cce7a88e3d6c257 (diff) | |
download | mariadb-git-83f6cae4fb58b6a6f004741099eb35ffedd67eeb.tar.gz |
fixed incorrect using of THD::is_fatal_error
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 9d755731cb7..7420f9de100 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1106,7 +1106,7 @@ extern "C" pthread_handler_decl(handle_bootstrap,arg) if (buff[length-1]!='\n' && !feof(file)) { send_error(thd,ER_NET_PACKET_TOO_LARGE, NullS); - thd->is_fatal_error= 1; + thd->fatal_error(); break; } while (length && (my_isspace(thd->charset(), buff[length-1]) || |