Skip to content

Commit

Permalink
Revert "experiment"
Browse files Browse the repository at this point in the history
This reverts commit e05a625.
  • Loading branch information
andygrove committed Jan 20, 2025
1 parent e05a625 commit 7e76947
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public class CometPlainVector extends CometDecodedVector {
private byte booleanByteCache;
private int booleanByteCacheIndex = -1;

private boolean isReused;

public CometPlainVector(ValueVector vector, boolean useDecimal128) {
this(vector, useDecimal128, false);
}
Expand All @@ -57,10 +59,15 @@ public CometPlainVector(
}

isBaseFixedWidthVector = valueVector instanceof BaseFixedWidthVector;
this.isReused = isReused;
}

public boolean isReused() {
return false;
return isReused;
}

public void setReused(boolean isReused) {
this.isReused = isReused;
}

@Override
Expand Down

0 comments on commit 7e76947

Please sign in to comment.