Skip to content

Commit

Permalink
fix set_statement test for windows
Browse files Browse the repository at this point in the history
timestamp has a lower granularity on windows so it needs
more time to change.
  • Loading branch information
vuvova committed Dec 4, 2014
1 parent 7a47416 commit e1913ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mysql-test/t/set_statement.test
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,9 @@ set statement timestamp=4646464 for select @@timestamp;
set @save_tm=@@timestamp;
select @@timestamp != 4646464;
select @@timestamp != 4646464;
select @@timestamp != @save_tm;
let $wait_condition=select @@timestamp != @save_tm;
source include/wait_condition.inc;
eval $wait_condition;

#
# Test of temporary changing default storage engine
Expand Down

0 comments on commit e1913ba

Please sign in to comment.