src/main/java/org/apache/accumulo/testing/randomwalk/conditional/Compact.java [36:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void visit(State state, RandWalkEnv env, Properties props) throws Exception {
    String table = state.getString("tableName");
    Random rand = state.getRandom();
    AccumuloClient client = env.getAccumuloClient();

    Text row1 = getRowFromBank(rand, state);
    Text row2 = getRowFromBank(rand, state);

    if (row1.compareTo(row2) >= 0) {
      row1 = null;
      row2 = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/accumulo/testing/randomwalk/conditional/Flush.java [36:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void visit(State state, RandWalkEnv env, Properties props) throws Exception {
    String table = state.getString("tableName");
    Random rand = state.getRandom();
    AccumuloClient client = env.getAccumuloClient();

    Text row1 = getRowFromBank(rand, state);
    Text row2 = getRowFromBank(rand, state);

    if (row1.compareTo(row2) >= 0) {
      row1 = null;
      row2 = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



