summaryrefslogtreecommitdiff
path: root/storage/maria/plug.in
diff options
context:
space:
mode:
Diffstat (limited to 'storage/maria/plug.in')
-rw-r--r--storage/maria/plug.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/storage/maria/plug.in b/storage/maria/plug.in
index 1ce64f6e2bb..01ef2443978 100644
--- a/storage/maria/plug.in
+++ b/storage/maria/plug.in
@@ -6,3 +6,14 @@ MYSQL_PLUGIN_STATIC(maria, [libmaria.a])
# Maria will probably go first into max builds, not all builds,
# so we don't declare it mandatory.
MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS(maria, [ha_maria.cc])
+
+AC_ARG_WITH(maria-tmp-tables,
+ [ --with-maria-tmp-tables Use Maria for internal temporary tables.],
+ [with_maria_tmp_tables=$withval],
+ [with_maria_tmp_tables=yes]
+)
+
+if test "$with_maria_tmp_tables" = "yes"
+then
+ AC_DEFINE([USE_MARIA_FOR_TMP_TABLES], [1], [Maria is used for internal temporary tables])
+fi