use of org.apache.carbondata.core.scan.filter.intf.RowImpl in project carbondata by apache.
the class LessThanEqualToExpressionUnitTest method testEvaluateForLessThanEqualToExpressionWithTimestampDataType.
@Test
public void testEvaluateForLessThanEqualToExpressionWithTimestampDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
try {
ColumnExpression left = new ColumnExpression("timestamp", DataType.TIMESTAMP);
left.setColIndex(0);
ColumnExpression right = new ColumnExpression("timestamp", DataType.TIMESTAMP);
right.setColIndex(1);
lessThanEqualToExpression = new LessThanEqualToExpression(left, 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) };
Date date1 = dateFormat.parse("24/09/2007");
long time1 = date1.getTime();
Timestamp[] row1 = { new Timestamp(time1) };
Object[] objectRow = { row, row1 };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
Boolean returnMockFlag = true;
@Mock
public Long getTime() {
if (returnMockFlag) {
returnMockFlag = false;
return 1190505600L;
} else {
return 1190592000L;
}
}
};
ExpressionResult result = lessThanEqualToExpression.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 LessThanExpressionUnitTest method testEvaluateForLessThanExpressionWithLongDataType.
@Test
public void testEvaluateForLessThanExpressionWithLongDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("contact", DataType.LONG);
right.setColIndex(0);
ColumnExpression left = new ColumnExpression("contact", DataType.LONG);
left.setColIndex(1);
lessThanExpression = new LessThanExpression(left, right);
RowImpl value = new RowImpl();
Long[] row = { 14523656L };
Long[] row1 = { 12456325L };
Object[] objectRow = { row1, row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
Boolean returnMockFlag = true;
@Mock
public Long getLong() {
if (returnMockFlag) {
returnMockFlag = false;
return 12456325L;
} else {
return 14523656L;
}
}
};
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 LessThanExpressionUnitTest method testEvaluateForLessThanExpressionWithTimestampDataType.
@Test
public void testEvaluateForLessThanExpressionWithTimestampDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
try {
ColumnExpression left = new ColumnExpression("timestamp", DataType.TIMESTAMP);
left.setColIndex(0);
ColumnExpression right = new ColumnExpression("timestamp", DataType.TIMESTAMP);
right.setColIndex(1);
lessThanExpression = new LessThanExpression(left, 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) };
Date date1 = dateFormat.parse("24/09/2007");
long time1 = date1.getTime();
Timestamp[] row1 = { new Timestamp(time1) };
Object[] objectRow = { row, row1 };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
Boolean returnMockFlag = true;
@Mock
public Long getTime() {
if (returnMockFlag) {
returnMockFlag = false;
return 1190505600L;
} else {
return 1190592000L;
}
}
};
ExpressionResult result = lessThanExpression.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 LessThanExpressionUnitTest method testEvaluateForLessThanExpressionWithDoubleDataType.
@Test
public void testEvaluateForLessThanExpressionWithDoubleDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("right_contact", DataType.DOUBLE);
right.setColIndex(0);
ColumnExpression left = new ColumnExpression("left_contact", DataType.DOUBLE);
left.setColIndex(1);
lessThanExpression = new LessThanExpression(left, right);
RowImpl value = new RowImpl();
Double[] row = { 2087D };
Double[] row1 = { 4454D };
Object[] objectRow = { row1, row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
Boolean returnMockFlag = true;
@Mock
public Double getDouble() {
if (returnMockFlag) {
returnMockFlag = false;
return 2087D;
} else {
return 4454D;
}
}
};
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 GreaterThanEqualToExpressionUnitTest method testEvaluateForGreaterThanEqualToExpressionWithDecimalDataType.
@Test
public void testEvaluateForGreaterThanEqualToExpressionWithDecimalDataType() throws FilterUnsupportedException, FilterIllegalMemberException {
ColumnExpression right = new ColumnExpression("contact", DataType.DECIMAL);
right.setColIndex(0);
ColumnExpression left = new ColumnExpression("contact", DataType.DECIMAL);
left.setColIndex(1);
greaterThanEqualToExpression = new GreaterThanEqualToExpression(left, right);
RowImpl value = new RowImpl();
Decimal[] row = new Decimal[] { Decimal.apply(12345.0) };
Object[] objectRow = { row, row };
value.setValues(objectRow);
new MockUp<ExpressionResult>() {
@Mock
public BigDecimal getDecimal() {
return new BigDecimal(12345.0);
}
};
ExpressionResult result = greaterThanEqualToExpression.evaluate(value);
assertTrue(result.getBoolean());
}
Aggregations