summaryrefslogtreecommitdiff
path: root/sql/mysql_priv.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/mysql_priv.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/mysql_priv.h')
-rw-r--r--sql/mysql_priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h
index 8707bc205df..2f2fc156af1 100644
--- a/sql/mysql_priv.h
+++ b/sql/mysql_priv.h
@@ -930,7 +930,7 @@ extern struct my_option my_long_options[];
/* optional things, have_* variables */
extern SHOW_COMP_OPTION have_isam, have_innodb, have_berkeley_db;
-extern SHOW_COMP_OPTION have_example_db, have_archive_db;
+extern SHOW_COMP_OPTION have_example_db, have_archive_db, have_csv_db;
extern SHOW_COMP_OPTION have_raid, have_openssl, have_symlink;
extern SHOW_COMP_OPTION have_query_cache, have_berkeley_db, have_innodb;
extern SHOW_COMP_OPTION have_geometry, have_rtree_keys;