Github user Ben-Zvi commented on a diff in the pull request:
https://github.com/apache/drill/pull/1101#discussion_r164609742
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/aggregate/HashAggTemplate.java
---
@@ -84,13 +85,6 @@
public abstract class HashAggTemplate implements HashAggregator {
protected static final org.slf4j.Logger logger =
org.slf4j.LoggerFactory.getLogger(HashAggregator.class);
- private static final int VARIABLE_MAX_WIDTH_VALUE_SIZE = 50;
- private static final int VARIABLE_MIN_WIDTH_VALUE_SIZE = 8;
-
- private static final boolean EXTRA_DEBUG_1 = false;
--- End diff --
This is Aman's implementation of an #ifdef .....
Basically he wanted to preserve these debugging messages, but not seeing
them (there are too many) while doing some other debugging work.
---