diff options
author | unknown <monty@mysql.com> | 2004-06-25 21:56:23 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-06-25 21:56:23 +0300 |
commit | ba8ffc50a96897f85f32c01485d44730b9deb383 (patch) | |
tree | 06dc93aec118ef2da622d0ade5ab9cf7f4664b88 /sql/sql_handler.cc | |
parent | c6e23c85493688417c0274b4630a6b7c44f59d10 (diff) | |
download | mariadb-git-ba8ffc50a96897f85f32c01485d44730b9deb383.tar.gz |
After merge fixes
include/mysql.h:
Cleanup
sql-common/client.c:
Allow client.c to compile after changes to mysql.h
sql/opt_range.cc:
Make bdb.test repeatable (and assume that table scans is a little bit slower)
sql/sql_handler.cc:
Fixed typo during merge
sql/sql_insert.cc:
Fixed indentation
Diffstat (limited to 'sql/sql_handler.cc')
-rw-r--r-- | sql/sql_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_handler.cc b/sql/sql_handler.cc index c31763d7f1d..56c1b0a1b51 100644 --- a/sql/sql_handler.cc +++ b/sql/sql_handler.cc @@ -108,7 +108,7 @@ int mysql_ha_close(THD *thd, TABLE_LIST *tables, !no_alias, dont_lock, &was_flushed); if (*table_ptr) { - (*ptr)->file->ha_index_or_rnd_end(); + (*table_ptr)->file->ha_index_or_rnd_end(); if (!dont_lock) VOID(pthread_mutex_lock(&LOCK_open)); if (close_thread_table(thd, table_ptr)) |