Skip to content

Commit

Permalink
0003508: Purge should use nolock dirty reads for min max range
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Mar 30, 2018
1 parent 82bac7e commit 54674a6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -322,7 +322,7 @@ private int purgeByMinMax(long[] minMax, long minGapStartId, MinMaxDeleteSql ide
case STRANDED_DATA_EVENT:
deleteSql = getSql("deleteStrandedDataEvent");
args = new Object[] { minId, maxId, cutoffTime, minId, maxId };
argTypes = new int[] { idSqlType, idSqlType, Types.TIMESTAMP };
argTypes = new int[] { idSqlType, idSqlType, Types.TIMESTAMP, idSqlType, idSqlType };
break;
}

Expand Down

0 comments on commit 54674a6

Please sign in to comment.