@Test
public void testBasicFilterLargeData() throws HiveException {
VectorFilterOperator vfo = getAVectorFilterOperator();
VectorExpression ve1 = new FilterLongColGreaterLongColumn(0,1);
VectorExpression ve2 = new FilterLongColEqualDoubleScalar(2, 0);
VectorExpression ve3 = new FilterExprAndExpr();
ve3.setChildExpressions(new VectorExpression[] {ve1, ve2});
vfo.setFilterCondition(ve3);
FakeDataReader fdr = new FakeDataReader(16*1024*1024, 3);