1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed problem with concurrent inserts and read-previous

Fix for BSDI 4.0


Docs/manual.texi:
  Added MySQL AB information
configure.in:
  Fix for BSDI 4.0
myisam/mi_rprev.c:
  Fixed problem with concurrent inserts and read-previous
mysys/mf_format.c:
  Fix for BSDI 4.0
sql/handler.cc:
  Fixed type
This commit is contained in:
unknown
2001-02-18 13:56:10 +02:00
parent 3006cd3246
commit 8afcb175aa
5 changed files with 154 additions and 21 deletions

View File

@@ -112,7 +112,7 @@ handler *get_new_handler(TABLE *table, enum db_type db_type)
return new ha_berkeley(table);
#endif
#ifdef HAVE_INNOBASE_DB
case DB_TYPE_INNOBASE_DB:
case DB_TYPE_INNOBASE:
return new ha_innobase(table);
#endif
case DB_TYPE_HEAP: