Skip to content

Commit

Permalink
Fix missing setTableFormatConfig invocation in RocksDbConfigSetter
Browse files Browse the repository at this point in the history
Signed-off-by: Niklas <[email protected]>
  • Loading branch information
nscuro authored Sep 11, 2024
1 parent f363133 commit 47484e2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public void setConfig(final String storeName, final Options options, final Map<S
tableConfig.setPinTopLevelIndexAndFilter(true);
}

options.setTableFormatConfig(tableConfig);

config.compactionStyle().ifPresent(options::setCompactionStyle);
config.compressionType().ifPresent(options::setCompressionType);
}
Expand Down

0 comments on commit 47484e2

Please sign in to comment.