core/src/main/java/site/ycsb/BasicTSDB.java [155:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      synchronized(timestamps) {
        Integer ctr = timestamps.get(lastTimestamp);
        if (ctr == null) {
          timestamps.put(lastTimestamp, 1);
        } else {
          timestamps.put(lastTimestamp, ctr + 1);
        }
      }
      if (isFloat) {
        incCounter(floats, hash);
      } else {
        incCounter(integers, hash);
      }
    }
    
    return Status.OK;
  }

  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/site/ycsb/BasicTSDB.java [208:226]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      synchronized(timestamps) {
        Integer ctr = timestamps.get(lastTimestamp);
        if (ctr == null) {
          timestamps.put(lastTimestamp, 1);
        } else {
          timestamps.put(lastTimestamp, ctr + 1);
        }
      }
      if (isFloat) {
        incCounter(floats, hash);
      } else {
        incCounter(integers, hash);
      }
    }

    return Status.OK;
  }

  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



