diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-19 20:41:19 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-19 20:41:19 +0300 |
commit | e69d8fb32a97cd7269f01ecc60b74f710e4a7c6b (patch) | |
tree | b9a43fcdfcccfe2291c2db879da2011530b4339f /innobase | |
parent | 19a2e7c16b8faf0264a0ee046374784e2a4158ad (diff) | |
download | mariadb-git-e69d8fb32a97cd7269f01ecc60b74f710e4a7c6b.tar.gz |
Fix for BDB and LOCK TABLES
BitKeeper/deleted/.del-ib_config.h.in~9e57db8504e55b7:
Delete: innobase/ib_config.h.in
BitKeeper/deleted/.del-ib_config.h~7539e26ffc614439:
Delete: innobase/ib_config.h
Docs/manual.texi:
Changelog
myisam/mi_locking.c:
Cleanup
mysql-test/r/bdb.result:
Test for LOCK TABLES
mysql-test/r/innodb.result:
Test for LOCK TABLES
mysql-test/t/bdb.test:
Test for LOCK TABLES
mysql-test/t/innodb.test:
Test for LOCK TABLES
sql-bench/test-insert.sh:
Allow loop to be small
sql/ha_berkeley.cc:
Fixed bug when using LOCK TABLES with BDB
sql/ha_berkeley.h:
Fixed bug when using LOCK TABLES with BDB
sql/handler.h:
Fixed bug when using LOCK TABLES with BDB
sql/sql_base.cc:
Fixed bug when using LOCK TABLES with BDB
sql/sql_parse.cc:
UNLOCK TABLES ends transaction
sql/sql_select.cc:
Fix to not call index_end() twice
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/ib_config.h | 31 | ||||
-rw-r--r-- | innobase/ib_config.h.in | 30 |
2 files changed, 0 insertions, 61 deletions
diff --git a/innobase/ib_config.h b/innobase/ib_config.h deleted file mode 100644 index 972d85e6eb9..00000000000 --- a/innobase/ib_config.h +++ /dev/null @@ -1,31 +0,0 @@ -/* ib_config.h. Generated automatically by configure. */ -/* ib_config.h.in. Generated automatically from configure.in by autoheader. */ - -/* Define as __inline if that's what the C compiler calls it. */ -/* #undef inline */ - -/* Define if your processor stores words with the most significant - byte first (like Motorola and SPARC, unlike Intel and VAX). */ -/* #undef WORDS_BIGENDIAN */ - -/* The number of bytes in a int. */ -#define SIZEOF_INT 4 - -/* Define if you have the sched_yield function. */ -#define HAVE_SCHED_YIELD 1 - -/* Define if you have the <aio.h> header file. */ -#define HAVE_AIO_H 1 - -/* Define if you have the <sched.h> header file. */ -#define HAVE_SCHED_H 1 - -/* Name of package */ -#define PACKAGE "ib" - -/* Version number of package */ -#define VERSION "0.90" - -/* No inlining because gcc broken on HP-UX */ -/* #undef UNIV_MUST_NOT_INLINE */ - diff --git a/innobase/ib_config.h.in b/innobase/ib_config.h.in deleted file mode 100644 index 967b422fb29..00000000000 --- a/innobase/ib_config.h.in +++ /dev/null @@ -1,30 +0,0 @@ -/* ib_config.h.in. Generated automatically from configure.in by autoheader. */ - -/* Define as __inline if that's what the C compiler calls it. */ -#undef inline - -/* Define if your processor stores words with the most significant - byte first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN - -/* The number of bytes in a int. */ -#undef SIZEOF_INT - -/* Define if you have the sched_yield function. */ -#undef HAVE_SCHED_YIELD - -/* Define if you have the <aio.h> header file. */ -#undef HAVE_AIO_H - -/* Define if you have the <sched.h> header file. */ -#undef HAVE_SCHED_H - -/* Name of package */ -#undef PACKAGE - -/* Version number of package */ -#undef VERSION - -/* No inlining because gcc broken on HP-UX */ -#undef UNIV_MUST_NOT_INLINE - |