Skip to content

Commit

Permalink
LOG: Print optimize_filters_for_memory option to the log (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
udi-speedb committed Nov 16, 2023
1 parent 0443295 commit e41758d
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 e41758d

Please sign in to comment.