Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
仟弋 committed Dec 9, 2024
1 parent c5a039e commit 29c54fc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,10 @@ public List<DataFileMeta> writeFiles(
}

public RecordWriter<KeyValue> createMergeTreeWriter(BinaryRow partition, int bucket) {
CoreOptions options =
new CoreOptions(Collections.singletonMap(CoreOptions.FILE_FORMAT.key(), "avro"));
Map<String, String> optionMap = new HashMap<>();
optionMap.put(CoreOptions.FILE_FORMAT.key(), "avro");
optionMap.put(CoreOptions.STORAGE_THIN_MODE.key(), "false");
CoreOptions options = new CoreOptions(optionMap);

Map<String, FileStorePathFactory> pathFactoryMap = new HashMap<>();
pathFactoryMap.put("avro", pathFactory);
Expand Down

0 comments on commit 29c54fc

Please sign in to comment.