Commit e1e153d9 authored by Ashish Agarwal's avatar Ashish Agarwal

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

parent dffeaef7
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
# see also have_32bit.inc # see also have_32bit.inc
--disable_query_log --disable_query_log
let $save = `SELECT @@session.myisam_sort_buffer_size`; let $save = `SELECT @@session.sort_buffer_size`;
SET @@session.myisam_sort_buffer_size = 4294967296; SET @@session.sort_buffer_size = 4294967296;
let $mach64 = `SELECT @@session.myisam_sort_buffer_size > 4294967295`; let $mach64 = `SELECT @@session.sort_buffer_size > 4294967295`;
eval SET @@session.myisam_sort_buffer_size = $save; eval SET @@session.sort_buffer_size = $save;
--enable_query_log --enable_query_log
if (!$mach64) 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