Skip to content

Commit

Permalink
Print optimize_filters_for_memory option to the log (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
udi-speedb committed Jun 6, 2023
1 parent 4c034e1 commit 221f72f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions table/block_based/block_based_table_factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,9 @@ std::string BlockBasedTableFactory::GetPrintableOptions() const {
snprintf(buffer, kBufferSize, " partition_filters: %d\n",
table_options_.partition_filters);
ret.append(buffer);
snprintf(buffer, kBufferSize, " optimize_filters_for_memory: %d\n",
table_options_.optimize_filters_for_memory);
ret.append(buffer);
snprintf(buffer, kBufferSize, " use_delta_encoding: %d\n",
table_options_.use_delta_encoding);
ret.append(buffer);
Expand Down

0 comments on commit 221f72f

Please sign in to comment.