diff options
author | unknown <brian@avenger.(none)> | 2004-05-20 18:13:11 -0700 |
---|---|---|
committer | unknown <brian@avenger.(none)> | 2004-05-20 18:13:11 -0700 |
commit | 40a4116128bfafb17ff79de8f4414b4c79c098a8 (patch) | |
tree | 45ea3f6b8edb44c6f6648d781eace4b0acc6d0aa /acconfig.h | |
parent | 8e96797cf7ae894cc575a255ee283c64677dfaa5 (diff) | |
download | mariadb-git-40a4116128bfafb17ff79de8f4414b4c79c098a8.tar.gz |
First commit of archive example. Archive is a simple storage engine that handles inserts and selects.
acconfig.h:
Adding undef piece for HAVE_ARCHIVE_DB
acinclude.m4:
Code needed for --with-archive-storage-engine flag for compile.
configure.in:
Adding tag for Archive
sql/Makefile.am:
Source updates to compile ha_archive
sql/examples/ha_archive.cc:
Class file for archive storage engine. First version.
sql/handler.cc:
Updates needed for adding archive storage engine.
sql/handler.h:
ENUM for archive storage engine.
sql/mysql_priv.h:
Archive show options
sql/mysqld.cc:
Ifdef foor HAVE_ARCHIVE_DB
sql/examples/ha_archive.h:
Include file for archive storage engine addition.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 67e9d1759c6..1f9fa081294 100644 --- a/acconfig.h +++ b/acconfig.h @@ -115,6 +115,9 @@ /* Builds Example DB */ #undef HAVE_EXAMPLE_DB +/* Builds Archive Storage Engine */ +#undef HAVE_ARCHIVE_DB + /* fp_except from ieeefp.h */ #undef HAVE_FP_EXCEPT |