summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorunknown <brian@avenger.(none)>2004-08-12 20:57:18 -0700
committerunknown <brian@avenger.(none)>2004-08-12 20:57:18 -0700
commit89987fa1044438f01c4a2efdf5563ec1c50a2102 (patch)
treeb1e231e4026c122f6cbe3584c1bee687679422a6 /sql/handler.h
parent325de4ebf110d2ed45ff7e215c2e835e7503d2b8 (diff)
downloadmariadb-git-89987fa1044438f01c4a2efdf5563ec1c50a2102.tar.gz
This is the addition of the CSV engine "aka tina". Its an example engine that works as a plain text file.
acconfig.h: Adding HAVE CSV rule acinclude.m4: Build option of csv engine configure.in: Update for building CSV sql/Makefile.am: Added files for CSV build sql/handler.cc: Needed options for CSV to be created. sql/handler.h: CSV type engine enum. sql/mysql_priv.h: Addition of the have_csv_db variable. sql/mysqld.cc: Code to show csv option. sql/set_var.cc: Adding have show variables for both csv and example.
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h
index 28b0b8df6e2..542229dcaf2 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -147,7 +147,7 @@ enum db_type
DB_TYPE_MRG_ISAM, DB_TYPE_MYISAM, DB_TYPE_MRG_MYISAM,
DB_TYPE_BERKELEY_DB, DB_TYPE_INNODB,
DB_TYPE_GEMINI, DB_TYPE_NDBCLUSTER,
- DB_TYPE_EXAMPLE_DB, DB_TYPE_ARCHIVE_DB,
+ DB_TYPE_EXAMPLE_DB, DB_TYPE_ARCHIVE_DB, DB_TYPE_CSV_DB,
DB_TYPE_DEFAULT // Must be last
};