diff options
author | unknown <monty@hundin.mysql.fi> | 2002-06-20 15:25:02 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-06-20 15:25:02 +0300 |
commit | 950df73713d6eca34de8be1f9771d40a8abeadc4 (patch) | |
tree | 7eee86ca5c680d305ade1203f3945cee038dbd46 /sql/ha_isam.cc | |
parent | ccf18acc242f33fffca016c1e28c99e6e4e443b7 (diff) | |
download | mariadb-git-950df73713d6eca34de8be1f9771d40a8abeadc4.tar.gz |
Fixed some bugs after last merge
Added semaphore support to MIT-pthreads.
Docs/manual.texi:
Updated benchmark data
configure.in:
Portability fix for compiling MIT-pthreads with gcc 3.0.x
(Still not perfect)
include/my_semaphore.h:
Cleanup
mit-pthreads/Changes-mysql:
Added semaphore support
mit-pthreads/include/Makefile.inc:
Added semaphore support
mit-pthreads/include/pthread/ac-types.h:
Added semaphore support
mit-pthreads/pthreads/GNUmakefile.inc:
Added semaphore support
mit-pthreads/pthreads/Makefile.inc:
Added semaphore support
mit-pthreads/stdio/xprintf.c:
Added semaphore support
mysql-test/r/rpl_alter.result:
Fixed test results after merge with 3.23
sql/ha_isam.cc:
Fixed core dump after merge
sql/ha_isam.h:
Fixed core dump after merge
sql/mini_client.cc:
P
Diffstat (limited to 'sql/ha_isam.cc')
-rw-r--r-- | sql/ha_isam.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/ha_isam.cc b/sql/ha_isam.cc index b83dabd86b1..55d24f5edb9 100644 --- a/sql/ha_isam.cc +++ b/sql/ha_isam.cc @@ -51,6 +51,8 @@ int ha_isam::open(const char *name, int mode, uint test_if_locked) info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST); if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED)) (void) nisam_extra(file,HA_EXTRA_WAIT_LOCK); + if (!table->db_record_offset) + int_table_flags|=HA_REC_NOT_IN_SEQ; return (0); } |