diff options
Diffstat (limited to 'mysql-test/main/win.test')
-rw-r--r-- | mysql-test/main/win.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mysql-test/main/win.test b/mysql-test/main/win.test index 007e608a0a1..0bdfe48a82b 100644 --- a/mysql-test/main/win.test +++ b/mysql-test/main/win.test @@ -1068,10 +1068,9 @@ drop table t1; --echo # create table t1(a int); insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); -set @tmp=@@big_tables; -set big_tables=1; +set tmp_memory_table_size=0; # force on-disk tmp table select rank() over (order by a) from t1; -set big_tables=@tmp; +set tmp_memory_table_size=default; drop table t1; --echo # |