summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-05-08 06:49:23 +0200
committerterry%mozilla.org <>1999-05-08 06:49:23 +0200
commit08c985add2543802057ab7d6d4b26a1904834c24 (patch)
treea3d462e1b439df21e47bc289f9a6f8b699a8604f /defparams.pl
parent0562b9bd346632e21892a3cb95af6849db29bc39 (diff)
downloadbugzilla-08c985add2543802057ab7d6d4b26a1904834c24.tar.gz
bugzilla-08c985add2543802057ab7d6d4b26a1904834c24.tar.xz
Provide an option to tell mysql "set option SQL_BIG_TABLES=1". This
is necessary for very big queries, but it will slow things up some otherwise.
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/defparams.pl b/defparams.pl
index f5b3d4198..ac19dcf09 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -292,5 +292,10 @@ DefParam("usebrowserinfo",
"b",
1);
+DefParam("expectbigqueries",
+ "If this is on, then we will tell mysql to <tt>set option SQL_BIG_TABLES=1</tt> before doing queries on bugs. This will be a little slower, but one will not get the error <tt>The table ### is full</tt> for big queries that require a big temporary table.",
+ "b",
+ 0);
+
1;