Skip to content

Commit

Permalink
Improve the readability of the TableProperties::ToString()
Browse files Browse the repository at this point in the history
  • Loading branch information
liukai committed Nov 22, 2013
1 parent 3e35aa6 commit 0c93df9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion db/table_properties_collector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ std::string TableProperties::ToString(
);
AppendProperty(
result,
"(estimated) table size=",
"(estimated) table size",
data_size + index_size + filter_size,
prop_delim,
kv_delim
Expand Down
4 changes: 2 additions & 2 deletions table/block_based_table_builder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,8 @@ Status BlockBasedTableBuilder::Finish() {
Log(
r->options.info_log,
"Table was constructed:\n"
" basic properties: %s\n"
" user collected properties: %s",
" [basic properties]: %s\n"
" [user collected properties]: %s",
r->props.ToString().c_str(),
user_collected.c_str()
);
Expand Down

0 comments on commit 0c93df9

Please sign in to comment.