diff options
author | brian@avenger.(none) <> | 2004-08-12 20:57:18 -0700 |
---|---|---|
committer | brian@avenger.(none) <> | 2004-08-12 20:57:18 -0700 |
commit | 1fe8b35bba07c8f4596ffca14a32c003ae48615a (patch) | |
tree | b1e231e4026c122f6cbe3584c1bee687679422a6 /sql/Makefile.am | |
parent | 943142e126bfd8bc70b12dbea03257e9ea876124 (diff) | |
download | mariadb-git-1fe8b35bba07c8f4596ffca14a32c003ae48615a.tar.gz |
This is the addition of the CSV engine "aka tina". Its an example engine that works as a plain text file.
Diffstat (limited to 'sql/Makefile.am')
-rw-r--r-- | sql/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/Makefile.am b/sql/Makefile.am index 007239f2e8c..e2d857aaa96 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -59,7 +59,8 @@ noinst_HEADERS = item.h item_func.h item_sum.h item_cmpfunc.h \ log_event.h sql_repl.h slave.h \ stacktrace.h sql_sort.h sql_cache.h set_var.h \ spatial.h gstream.h client_settings.h tzfile.h \ - tztime.h examples/ha_example.h examples/ha_archive.h + tztime.h examples/ha_example.h examples/ha_archive.h \ + examples/ha_tina.h mysqld_SOURCES = sql_lex.cc sql_handler.cc \ item.cc item_sum.cc item_buff.cc item_func.cc \ item_cmpfunc.cc item_strfunc.cc item_timefunc.cc \ @@ -90,7 +91,8 @@ mysqld_SOURCES = sql_lex.cc sql_handler.cc \ stacktrace.c repl_failsafe.h repl_failsafe.cc \ gstream.cc spatial.cc sql_help.cc protocol_cursor.cc \ tztime.cc my_time.c \ - examples/ha_example.cc examples/ha_archive.cc + examples/ha_example.cc examples/ha_archive.cc \ + examples/ha_tina.cc gen_lex_hash_SOURCES = gen_lex_hash.cc gen_lex_hash_LDADD = $(LDADD) $(CXXLDFLAGS) |