forked from sqlancer/sqlancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYSQLInOperation.java
More file actions
65 lines (54 loc) · 1.85 KB
/
Copy pathYSQLInOperation.java
File metadata and controls
65 lines (54 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package sqlancer.yugabyte.ysql.ast;
import java.util.List;
import sqlancer.yugabyte.ysql.YSQLSchema.YSQLDataType;
public class YSQLInOperation implements YSQLExpression {
private final YSQLExpression expr;
private final List<YSQLExpression> listElements;
private final boolean isTrue;
public YSQLInOperation(YSQLExpression expr, List<YSQLExpression> listElements, boolean isTrue) {
this.expr = expr;
this.listElements = listElements;
this.isTrue = isTrue;
}
public YSQLExpression getExpr() {
return expr;
}
public List<YSQLExpression> getListElements() {
return listElements;
}
public boolean isTrue() {
return isTrue;
}
@Override
public YSQLDataType getExpressionType() {
return YSQLDataType.BOOLEAN;
}
@Override
public YSQLConstant getExpectedValue() {
YSQLConstant leftValue = expr.getExpectedValue();
if (leftValue == null) {
return null;
}
if (leftValue.isNull()) {
return YSQLConstant.createNullConstant();
}
boolean isNull = false;
for (YSQLExpression expr : getListElements()) {
YSQLConstant rightExpectedValue = expr.getExpectedValue();
if (rightExpectedValue == null) {
return null;
}
if (rightExpectedValue.isNull()) {
isNull = true;
} else if (rightExpectedValue.isEquals(this.expr.getExpectedValue()).isBoolean()
&& rightExpectedValue.isEquals(this.expr.getExpectedValue()).asBoolean()) {
return YSQLConstant.createBooleanConstant(isTrue);
}
}
if (isNull) {
return YSQLConstant.createNullConstant();
} else {
return YSQLConstant.createBooleanConstant(!isTrue);
}
}
}