harry-core/src/harry/corruptor/ChangeValueCorruptor.java [44:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                OpSelectors.MonotonicClock clock)
    {
        this.schema = schemaSpec;
        this.clock = clock;
        this.rng = new PcgRSUFast(1, 1);
    }

    // Can corrupt any row that has at least one written non-null value
    public boolean canCorrupt(ResultSetRow row)
    {
        for (int idx = 0; idx < row.lts.length; idx++)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



harry-core/src/harry/corruptor/ShowValueCorruptor.java [40:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                              OpSelectors.MonotonicClock clock)
    {
        this.schema = schemaSpec;
        this.clock = clock;
        this.rng = new PcgRSUFast(1, 1);
    }

    // Can corrupt any row that has at least one written non-null value
    public boolean canCorrupt(ResultSetRow row)
    {
        for (int idx = 0; idx < row.lts.length; idx++)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



