Github user adeneche commented on a diff in the pull request: https://github.com/apache/drill/pull/283#discussion_r46347956 --- Diff: exec/memory/base/src/main/java/io/netty/buffer/UnsafeDirectLittleEndian.java --- @@ -21,21 +21,63 @@ import io.netty.util.internal.PlatformDependent; import java.nio.ByteOrder; +import java.util.Collections; +import java.util.IdentityHashMap; +import java.util.LinkedList; +import java.util.Map; +import java.util.Set; import java.util.concurrent.atomic.AtomicLong; +import org.apache.drill.common.StackTrace; +import org.slf4j.Logger; + public final class UnsafeDirectLittleEndian extends WrappedByteBuf { private static final boolean NATIVE_ORDER = ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN; private final AbstractByteBuf wrapped; private final long memoryAddress; + private static final boolean TRACK_BUFFERS = false; --- End diff -- `TRACK_BUFFERS` is not used anywhere!
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---