src/main/java/com/google/cloud/solutions/autotokenize/common/SortCsvRow.java [139:145]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public KV<String, KV<String, CsvRow>> apply(CsvRow input) {
      var key1 = input.get(primaryOrderKey());
      var key2 =
          (secondaryOrderKey() != null) ? input.get(secondaryOrderKey()) : DEFAULT_SORT_KEY_VALUE;

      return KV.of(key1, KV.of(key2, input));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/solutions/autotokenize/common/SortCsvRow.java [174:180]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public KV<String, KV<String, CsvRow>> apply(CsvRow input) {
      var key1 = input.get(primaryOrderKey());
      var key2 =
          (secondaryOrderKey() != null) ? input.get(secondaryOrderKey()) : DEFAULT_SORT_KEY_VALUE;

      return KV.of(key1, KV.of(key2, input));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



