Skip to content

Instantly share code, notes, and snippets.

@hyunsik
Last active August 25, 2016 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyunsik/7e86ae9b495194627b1adbc5d590bc63 to your computer and use it in GitHub Desktop.
Save hyunsik/7e86ae9b495194627b1adbc5d590bc63 to your computer and use it in GitHub Desktop.
ColumnVector in Hive
public abstract class ColumnVector {
public boolean[] isNull;
public boolean noNulls;
public boolean isRepeating;
...
}
public class LongColumnVector extends ColumnVector {
public long[] vector;
public static final long NULL_VALUE = 1;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment