summaryrefslogtreecommitdiff
path: root/sql/log_event.cc
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-08-28 22:18:02 +0300
committerunknown <monty@narttu.mysql.fi>2003-08-28 22:18:02 +0300
commit6fd5403d3105eb5df3e23a2dcf7ddd33a3589778 (patch)
treef39244679eaca00bb7f900f129b56e7b4c08528e /sql/log_event.cc
parent6866b92331fa7badc3d5ee34d2663bb4cc369917 (diff)
downloadmariadb-git-6fd5403d3105eb5df3e23a2dcf7ddd33a3589778.tar.gz
Portability fixes
client/mysqltest.c: Removed not used functions myisam/mi_dynrec.c: Added assert to avoid compilation errors mysql-test/r/isam.result: Updated results after merge sql/log_event.cc: Cleanup sql/mysql_priv.h: Cleanup sql/sql_class.cc: Moved Table_ident functions to .cc file to allow them to use table_case_convert() sql/sql_class.h: Moved Table_ident functions to .cc file to allow them to use table_case_convert()
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r--sql/log_event.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc
index 425b3c063d1..82e9c5950a7 100644
--- a/sql/log_event.cc
+++ b/sql/log_event.cc
@@ -2092,11 +2092,12 @@ int Start_log_event::exec_event(struct st_relay_log_info* rli)
*/
break;
case BINLOG_FORMAT_323_GEQ_57 :
- /* Can distinguish, based on the value of 'created' */
- if (!created)
- break;
- /* otherwise this was generated at master startup*/
- close_temporary_tables(thd);
+ /*
+ Can distinguish, based on the value of 'created',
+ which was generated at master startup.
+ */
+ if (created)
+ close_temporary_tables(thd);
break;
default :
/* this case is impossible */