blob: 21bbe7aea218d1b1f26d0f925c44da424912d2ff (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# windows has a rather low-resolution system clock
# wait until the event from the past will actually be in the past
#
if (`select @@version_compile_os in ("win32","win64","windows")`)
{
let $_past=`select max(row_start) from t1`;
--let $wait_condition=select TIMESTAMP'$_past' < sysdate(6)
--source include/wait_condition.inc
}
|