-
Type: Bug
-
Resolution: Duplicate
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
The test/checkpoint program fails with read timestamp XXX older than oldest timestamp.
Running this reproduces it relatively quickly for me (a few dozen runs).
#!/bin/sh start=1 stop=100000 mypid=$$ dir="./RUNDIR.$mypid" log="./RUNDIR.$mypid.log" while test "$start" -le "$stop"; do echo "`date`: iteration $start" ./t -h $dir -T 3 -t m -s > $log 2>&1 if test "$?" -ne "0" ; then echo "Iteration $start failed: output in $log" exit 1 fi start=`expr $start + 1` done
- duplicates
-
WT-3386 Fix test/checkpoint with timestamps
- Closed