diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-10-08 01:48:50 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-10-08 01:48:50 -0600 |
commit | cc89cd45d4a22b4e562352f283aaa65217d83e92 (patch) | |
tree | 569e42d920c18f5d5edf91a783fcf98522e11045 /sql/opt_range.h | |
parent | 179debb74ed9566ab13ec9236329fe88122bb515 (diff) | |
download | mariadb-git-cc89cd45d4a22b4e562352f283aaa65217d83e92.tar.gz |
Docs/manual.texi
replication updates
sql/opt_range.h
fixed compiler warning
sql/slave.cc
fixed handling of long usernames
fixed insert_id + query log event processing atomicity in the case
of slave death
fix edcharset coversion to not be global to all threads
sql/sql_class.h
fix to make insert_id event and the subsequent query event be still processed
atomically if slave dies in the middle
sql/sql_select.cc
temp fix to make it compile
repl-tests/test-auto-inc/run.test@1.1
New BitKeeper file ``repl-tests/test-auto-inc/run.test''
repl-tests/test-auto-inc/x.master@1.1
New BitKeeper file ``repl-tests/test-auto-inc/x.master''
Docs/manual.texi:
replication updates
sql/opt_range.h:
fixed compiler warning
sql/slave.cc:
fixed handling of long usernames
fixed insert_id + query log event processing atomicity in the case
of slave death
fix edcharset coversion to not be global to all threads
sql/sql_class.h:
fix to make insert_id event and the subsequent query event be still processed
atomically if slave dies in the middle
sql/sql_select.cc:
temp fix to make it compile
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index 8e3bb6c83bf..250c172a988 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -71,7 +71,7 @@ public: double read_time; QUICK_SELECT(TABLE *table,uint index_arg,bool no_alloc=0); - ~QUICK_SELECT(); + virtual ~QUICK_SELECT(); // fixed by Sasha needs to be virtual void reset(void) { next=0; it.rewind(); } virtual int init() { return 0; } virtual int get_next(); |