diff options
author | unknown <kostja@bodhi.(none)> | 2007-07-20 19:50:55 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-07-20 19:50:55 +0400 |
commit | f28e63a37d5698b36464584f63431f9d038ce861 (patch) | |
tree | 5faa032185bd80c4f0131f64b01d0ea4fdc7aa5f /sql/sql_base.cc | |
parent | 6c24dd7f0cdc3d996610c4cfc8181d25c5f580fe (diff) | |
parent | 7a99db0b7308f1636bbc7fafe36b478968497e50 (diff) | |
download | mariadb-git-f28e63a37d5698b36464584f63431f9d038ce861.tar.gz |
Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime
into bodhi.(none):/opt/local/work/mysql-5.1-runtime
sql/sql_base.cc:
Auto merged
Diffstat (limited to 'sql/sql_base.cc')
-rw-r--r-- | sql/sql_base.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_base.cc b/sql/sql_base.cc index 6fd57c5a428..0cd46a7c6fb 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -64,11 +64,11 @@ Prelock_error_handler::handle_error(uint sql_errno, if (sql_errno == ER_NO_SUCH_TABLE) { m_handled_errors++; - return TRUE; // 'TRUE', as per coding style + return TRUE; } m_unhandled_errors++; - return FALSE; // 'FALSE', as per coding style + return FALSE; } @@ -3533,7 +3533,7 @@ int open_tables(THD *thd, TABLE_LIST **start, uint *counter, uint flags) */ for (tables= *start; tables ;tables= tables->next_global) { - safe_to_ignore_table= FALSE; // 'FALSE', as per coding style + safe_to_ignore_table= FALSE; if (tables->lock_type == TL_WRITE_DEFAULT) { |