diff options
author | unknown <monty@mysql.com> | 2004-11-10 18:07:39 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-11-10 18:07:39 +0200 |
commit | 69bce9c68d2dd38bc4cb58b19fbf609aca11e5dd (patch) | |
tree | 60f8373ec30a2ed262c9a3d17d596cb7897a54d3 /sql/sql_class.h | |
parent | 977fef311eb67fa6f7ec81f38f3b3190eb3e1ed5 (diff) | |
download | mariadb-git-69bce9c68d2dd38bc4cb58b19fbf609aca11e5dd.tar.gz |
More debugging
Print position in normal log for Binlog dump
dbug/dbug.c:
Added DBUG_OUTPUT() to temporary start/stop trace-file output
Optimized alignment of CODE_STATE structure
include/my_dbug.h:
Added DBUG_OUTPUT() to temporary start/stop trace-file output
sql/field.cc:
Safety fix when used with future 5.0 .frm tables
sql/log.cc:
More debugging
sql/mysqld.cc:
Fixed type
sql/slave.cc:
Fixed wrong cast (not a bug)
sql/sql_class.h:
More DBUG output
sql/sql_parse.cc:
Print position in normal log for Binlog dump
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index df6be559df2..312d9de9794 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -131,7 +131,7 @@ public: DBUG_VOID_RETURN; } void set_max_size(ulong max_size_arg); - void signal_update() { pthread_cond_broadcast(&update_cond);} + void signal_update(); void wait_for_update(THD* thd, bool master_or_slave); void set_need_start_event() { need_start_event = 1; } void init(enum_log_type log_type_arg, |