diff options
author | Konstantin Osipov <kostja@sun.com> | 2010-11-12 17:20:12 +0300 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2010-11-12 17:20:12 +0300 |
commit | 86bc11a54f99b14bfca6e300f75118660d0db6bc (patch) | |
tree | bd846113e457ac1388d3f8dd1c5f79e4f4cd6217 /sql/sql_error.cc | |
parent | 2f5b308f3b073444f45a3739f0fada20d71cc2d8 (diff) | |
download | mariadb-git-86bc11a54f99b14bfca6e300f75118660d0db6bc.tar.gz |
Fix a compilation failure of non-debug build introduced
by the patch for Bug#57058.
sql/sql_error.cc:
Delete assignment of a removed class member.
Diffstat (limited to 'sql/sql_error.cc')
-rw-r--r-- | sql/sql_error.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_error.cc b/sql/sql_error.cc index f042a7cd164..d0982b879e7 100644 --- a/sql/sql_error.cc +++ b/sql/sql_error.cc @@ -334,7 +334,6 @@ Diagnostics_area::reset_diagnostics_area() /** Don't take chances in production */ m_message[0]= '\0'; m_sql_errno= 0; - m_server_status= 0; m_affected_rows= 0; m_last_insert_id= 0; m_statement_warn_count= 0; |