use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class AndExpressionTest method testEvaluateForDefault.
@Test(expected = Exception.class)
public void testEvaluateForDefault() throws FilterUnsupportedException, FilterIllegalMemberException {
RowImpl rowImpl = new RowImpl();
rowImpl.setValues(new Boolean[] { true });
final ExpressionResult expressionResult = new ExpressionResult(DataType.STRING, "test");
new MockUp<ColumnExpression>() {
@Mock
public ExpressionResult evaluate(RowIntf value) throws FilterUnsupportedException, FilterIllegalMemberException {
return expressionResult;
}
};
andExpression.evaluate(rowImpl);
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class LessThanEqualToExpressionUnitTest method testForLessThanEqualToExpressionWithDefaultCase.
@Test(expected = FilterUnsupportedException.class)
public void testForLessThanEqualToExpressionWithDefaultCase() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("contact", DataType.BOOLEAN);
right.setColIndex(0);
lessThanEqualToExpression = new LessThanEqualToExpression(right, right);
RowImpl value = new RowImpl();
Boolean[] row = { true };
Object[] objectRow = { row };
value.setValues(objectRow);
lessThanEqualToExpression.evaluate(value);
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class LessThanExpressionUnitTest method testEvaluateForLessThanExpressionWithIntDataType.
@Test
public void testEvaluateForLessThanExpressionWithIntDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("right_number", DataType.INT);
right.setColIndex(0);
ColumnExpression left = new ColumnExpression("left_number", DataType.INT);
left.setColIndex(1);
lessThanExpression = new LessThanExpression(left, right);
RowImpl value = new RowImpl();
Integer[] row = { 1550 };
Integer[] row1 = { 1420 };
Object[] objectRow = { row, row1 };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
Boolean returnMockFlag = true;
@Mock
public Integer getInt() {
if (returnMockFlag) {
returnMockFlag = false;
return 1420;
} else {
return 1550;
}
}
};
ExpressionResult result = lessThanExpression.evaluate(value);
assertTrue(result.getBoolean());
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class LiteralExpressionTest method testGetExpressionResult.
@Test
public void testGetExpressionResult() {
RowImpl rowImpl = new RowImpl();
rowImpl.setValues(new String[] { "testing" });
literalExpression.evaluate(rowImpl);
ExpressionResult expectedResult = new ExpressionResult(DataType.STRING, "testing");
assertEquals(expectedResult, literalExpression.evaluate(rowImpl));
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class EqualToExpressionUnitTest method testEvaluateForEqualToExpressionWithBooleanParameter.
@Test
public void testEvaluateForEqualToExpressionWithBooleanParameter() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("id", DataType.SHORT);
right.setColIndex(0);
equalToExpression = new EqualToExpression(right, right, true);
RowImpl value = new RowImpl();
Short[] row = { 15 };
Object[] objectRow = { row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
@Mock
public Short getShort() {
return 15;
}
};
ExpressionResult result = equalToExpression.evaluate(value);
assertTrue(result.getBoolean());
}
Aggregations