From 08c985add2543802057ab7d6d4b26a1904834c24 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Sat, 8 May 1999 04:49:23 +0000 Subject: 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. --- buglist.cgi | 3 +++ 1 file changed, 3 insertions(+) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index bd83f34ed..4727afca6 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -461,6 +461,9 @@ if ($serverpush) { } } +if (Param('expectbigqueries')) { + SendSQL("set option SQL_BIG_TABLES=1"); +} SendSQL($query); my $count = 0; -- cgit v1.2.3-24-g4f1b