Skip to content

Commit

Permalink
more info
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Oct 23, 2024
1 parent 93c43f0 commit 3447463
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ private AColGroup encode(ColumnEncoderComposite c) throws Exception {
final Timing t = new Timing();
AColGroup g = executeEncode(c);
if(LOG.isDebugEnabled())
LOG.debug(String.format("Encode : %4d %10f", c._colID, t.stop()));
LOG.debug(String.format("Encode: columns: %4d estimateDistinct: %6d distinct: %6d size: %6d time: %10f", c._colID, c._estNumDistincts, g.getNumValues(),
g.estimateInMemorySize(), t.stop()));
return g;
}

Expand Down

0 comments on commit 3447463

Please sign in to comment.