summaryrefslogtreecommitdiff
path: root/sql/sql_base.cc
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.(none)>2007-07-20 19:50:55 +0400
committerunknown <kostja@bodhi.(none)>2007-07-20 19:50:55 +0400
commitf28e63a37d5698b36464584f63431f9d038ce861 (patch)
tree5faa032185bd80c4f0131f64b01d0ea4fdc7aa5f /sql/sql_base.cc
parent6c24dd7f0cdc3d996610c4cfc8181d25c5f580fe (diff)
parent7a99db0b7308f1636bbc7fafe36b478968497e50 (diff)
downloadmariadb-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.cc6
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)
{