Commit 72313048 authored by Ashish Agarwal's avatar Ashish Agarwal

BUG#11754145: Failing test cases. Patch to correct the test case.

parent 8aabae6d
......@@ -2,10 +2,10 @@
# see also have_32bit.inc
--disable_query_log
let $save = `SELECT @@session.myisam_sort_buffer_size`;
SET @@session.myisam_sort_buffer_size = 4294967296;
let $mach64 = `SELECT @@session.myisam_sort_buffer_size > 4294967295`;
eval SET @@session.myisam_sort_buffer_size = $save;
let $save = `SELECT @@session.sort_buffer_size`;
SET @@session.sort_buffer_size = 4294967296;
let $mach64 = `SELECT @@session.sort_buffer_size > 4294967295`;
eval SET @@session.sort_buffer_size = $save;
--enable_query_log
if (!$mach64)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment