diff options
author | unknown <brian@avenger.(none)> | 2004-08-17 01:29:19 -0700 |
---|---|---|
committer | unknown <brian@avenger.(none)> | 2004-08-17 01:29:19 -0700 |
commit | ff24b4d5d4142d5e98714b57cfa088a4f661a656 (patch) | |
tree | 43a2156feae421b94fc896f3042ab2889e4be04a /sql/examples | |
parent | dc11a82e3371222a9fc869b65c84d7f77234be80 (diff) | |
download | mariadb-git-ff24b4d5d4142d5e98714b57cfa088a4f661a656.tar.gz |
Fix for not compiling ha_tina.
sql/examples/ha_tina.cc:
Adding in pieces to remove from compile (aka ifdef).
Diffstat (limited to 'sql/examples')
-rw-r--r-- | sql/examples/ha_tina.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/examples/ha_tina.cc b/sql/examples/ha_tina.cc index 728af469bb0..06a19e478ae 100644 --- a/sql/examples/ha_tina.cc +++ b/sql/examples/ha_tina.cc @@ -43,6 +43,9 @@ TODO: #endif #include "mysql_priv.h" + +#ifdef HAVE_CSV_DB + #include "ha_tina.h" #include <sys/mman.h> @@ -844,3 +847,5 @@ int ha_tina::create(const char *name, TABLE *table_arg, HA_CREATE_INFO *create_i DBUG_RETURN(0); } + +#endif /* enable CSV */ |