diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-10-26 22:11:55 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-10-26 22:11:55 -0600 |
commit | add02ff882e168edc2cf5d4f24796e788b31634c (patch) | |
tree | 1b71072bebf724dd061370737f97c2a08a176ae3 /sql/sql_class.cc | |
parent | 293d7c8313ba8faa41f39d06617a542e337d8883 (diff) | |
download | mariadb-git-add02ff882e168edc2cf5d4f24796e788b31634c.tar.gz |
fixed --skip-slave-thread bug
added PURGE MASTER LOGS TO and SHOW MASTER LOGS
fixed the output of SHOW MASTER STATUS
updated docs
Docs/manual.texi:
Update for PURGE MASTER LOGS TO, SHOW MASTER LOGS
sql/lex.h:
added PURGE
sql/log.cc:
update for PURGE
BitKeeper/etc/ignore:
Added include/.my_sys.h.swp PENDING/2000-10-25.01 PENDING/2000-10-25.02 support-files/mysql-3.23.27-beta.spec to the ignore list
sql/mysqld.cc:
fixed bug in --skip-slave-start
sql/sql_class.cc:
added linfo to THD
sql/sql_class.h:
updates for PURGE
sql/sql_lex.h:
updates for PURGE
sql/sql_parse.cc:
updates for PURGE
sql/sql_repl.cc:
updates for PURGE
sql/sql_repl.h:
updates for PURGE
sql/sql_yacc.yy:
updates for PURGE
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index b65c5d1978f..f86c0cf7461 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -94,6 +94,7 @@ THD::THD() options=thd_startup_options; update_lock_default= low_priority_updates ? TL_WRITE_LOW_PRIORITY : TL_WRITE; start_time=(time_t) 0; + current_linfo = 0; last_nx_table = last_nx_db = 0; inactive_timeout=net_wait_timeout; open_options=ha_open_options; |