Skip to content

Commit

Permalink
Increase DEFAULT_DATA_SIZE_PER_COLUMN value
Browse files Browse the repository at this point in the history
Average row size for fixed width type is handled explicitly
therefore we can increase default row size to larger values
since it covers variable length types.
  • Loading branch information
sopel39 committed Jul 9, 2018
1 parent 4278c9b commit f568948
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

public class PlanNodeStatsEstimate
{
private static final double DEFAULT_DATA_SIZE_PER_COLUMN = 10;
private static final double DEFAULT_DATA_SIZE_PER_COLUMN = 50;
public static final PlanNodeStatsEstimate UNKNOWN_STATS = builder().build();

private final double outputRowCount;
Expand Down

0 comments on commit f568948

Please sign in to comment.