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());
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class EqualToExpressionUnitTest method testForEqualToExpressionForDefaultCase.
@Test(expected = FilterUnsupportedException.class)
public void testForEqualToExpressionForDefaultCase() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("contact", DataType.BOOLEAN);
right.setColIndex(0);
equalToExpression = new EqualToExpression(right, right);
RowImpl value = new RowImpl();
Boolean[] row = { true };
Object[] objectRow = { row };
value.setValues(objectRow);
ExpressionResult result = equalToExpression.evaluate(value);
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class EqualToExpressionUnitTest method testEvaluateForEqualToExpressionWithTimestampDataType.
@Test
public void testEvaluateForEqualToExpressionWithTimestampDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
try {
ColumnExpression right = new ColumnExpression("timestamp", DataType.TIMESTAMP);
right.setColIndex(0);
equalToExpression = new EqualToExpression(right, right);
RowImpl value = new RowImpl();
DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = dateFormat.parse("23/09/2007");
long time = date.getTime();
Timestamp[] row = { new Timestamp(time) };
Object[] objectRow = { row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
@Mock
public Long getTime() {
return 18465213000000L;
}
};
ExpressionResult result = equalToExpression.evaluate(value);
assertTrue(result.getBoolean());
} catch (ParseException e) {
System.out.println("Error while parsing " + e.getMessage());
}
}
use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class EqualToExpressionUnitTest method testEvaluateForEqualToExpressionWithIntDataType.
@Test
public void testEvaluateForEqualToExpressionWithIntDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("number", DataType.INT);
right.setColIndex(0);
equalToExpression = new EqualToExpression(right, right);
RowImpl value = new RowImpl();
Integer[] row = { 14 };
Object[] objectRow = { row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
@Mock
public Integer getInt() {
return 14;
}
};
ExpressionResult result = equalToExpression.evaluate(value);
assertTrue(result.getBoolean());
}
Aggregations