提交 6ec2c394 authored 作者: Noel Grandin's avatar Noel Grandin

enum for OpType

上级 66d4ce58
...@@ -122,6 +122,7 @@ import org.h2.expression.FunctionCall; ...@@ -122,6 +122,7 @@ import org.h2.expression.FunctionCall;
import org.h2.expression.JavaAggregate; import org.h2.expression.JavaAggregate;
import org.h2.expression.JavaFunction; import org.h2.expression.JavaFunction;
import org.h2.expression.Operation; import org.h2.expression.Operation;
import org.h2.expression.Operation.OpType;
import org.h2.expression.Parameter; import org.h2.expression.Parameter;
import org.h2.expression.Rownum; import org.h2.expression.Rownum;
import org.h2.expression.SequenceValue; import org.h2.expression.SequenceValue;
...@@ -2557,7 +2558,7 @@ public class Parser { ...@@ -2557,7 +2558,7 @@ public class Parser {
Expression r = readSum(); Expression r = readSum();
while (true) { while (true) {
if (readIf("||")) { if (readIf("||")) {
r = new Operation(Operation.CONCAT, r, readSum()); r = new Operation(OpType.CONCAT, r, readSum());
} else if (readIf("~")) { } else if (readIf("~")) {
if (readIf("*")) { if (readIf("*")) {
Function function = Function.getFunction(database, "CAST"); Function function = Function.getFunction(database, "CAST");
...@@ -2587,9 +2588,9 @@ public class Parser { ...@@ -2587,9 +2588,9 @@ public class Parser {
Expression r = readFactor(); Expression r = readFactor();
while (true) { while (true) {
if (readIf("+")) { if (readIf("+")) {
r = new Operation(Operation.PLUS, r, readFactor()); r = new Operation(OpType.PLUS, r, readFactor());
} else if (readIf("-")) { } else if (readIf("-")) {
r = new Operation(Operation.MINUS, r, readFactor()); r = new Operation(OpType.MINUS, r, readFactor());
} else { } else {
return r; return r;
} }
...@@ -2600,11 +2601,11 @@ public class Parser { ...@@ -2600,11 +2601,11 @@ public class Parser {
Expression r = readTerm(); Expression r = readTerm();
while (true) { while (true) {
if (readIf("*")) { if (readIf("*")) {
r = new Operation(Operation.MULTIPLY, r, readTerm()); r = new Operation(OpType.MULTIPLY, r, readTerm());
} else if (readIf("/")) { } else if (readIf("/")) {
r = new Operation(Operation.DIVIDE, r, readTerm()); r = new Operation(OpType.DIVIDE, r, readTerm());
} else if (readIf("%")) { } else if (readIf("%")) {
r = new Operation(Operation.MODULUS, r, readTerm()); r = new Operation(OpType.MODULUS, r, readTerm());
} else { } else {
return r; return r;
} }
...@@ -3194,7 +3195,7 @@ public class Parser { ...@@ -3194,7 +3195,7 @@ public class Parser {
} }
read(); read();
} else { } else {
r = new Operation(Operation.NEGATE, readTerm(), null); r = new Operation(OpType.NEGATE, readTerm(), null);
} }
break; break;
case PLUS: case PLUS:
...@@ -3258,7 +3259,7 @@ public class Parser { ...@@ -3258,7 +3259,7 @@ public class Parser {
Function function = Function.getFunction(database, "ARRAY_GET"); Function function = Function.getFunction(database, "ARRAY_GET");
function.setParameter(0, r); function.setParameter(0, r);
r = readExpression(); r = readExpression();
r = new Operation(Operation.PLUS, r, ValueExpression.get(ValueInt r = new Operation(OpType.PLUS, r, ValueExpression.get(ValueInt
.get(1))); .get(1)));
function.setParameter(1, r); function.setParameter(1, r);
r = function; r = function;
......
...@@ -22,48 +22,50 @@ import org.h2.value.ValueString; ...@@ -22,48 +22,50 @@ import org.h2.value.ValueString;
*/ */
public class Operation extends Expression { public class Operation extends Expression {
/** public enum OpType {
* This operation represents a string concatenation as in /**
* 'Hello' || 'World'. * This operation represents a string concatenation as in
*/ * 'Hello' || 'World'.
public static final int CONCAT = 0; */
CONCAT,
/** /**
* This operation represents an addition as in 1 + 2. * This operation represents an addition as in 1 + 2.
*/ */
public static final int PLUS = 1; PLUS,
/** /**
* This operation represents a subtraction as in 2 - 1. * This operation represents a subtraction as in 2 - 1.
*/ */
public static final int MINUS = 2; MINUS,
/** /**
* This operation represents a multiplication as in 2 * 3. * This operation represents a multiplication as in 2 * 3.
*/ */
public static final int MULTIPLY = 3; MULTIPLY,
/** /**
* This operation represents a division as in 4 * 2. * This operation represents a division as in 4 * 2.
*/ */
public static final int DIVIDE = 4; DIVIDE,
/** /**
* This operation represents a negation as in - ID. * This operation represents a negation as in - ID.
*/ */
public static final int NEGATE = 5; NEGATE,
/** /**
* This operation represents a modulus as in 5 % 2. * This operation represents a modulus as in 5 % 2.
*/ */
public static final int MODULUS = 6; MODULUS
};
private int opType; private OpType opType;
private Expression left, right; private Expression left, right;
private int dataType; private int dataType;
private boolean convertRight = true; private boolean convertRight = true;
public Operation(int opType, Expression left, Expression right) { public Operation(OpType opType, Expression left, Expression right) {
this.opType = opType; this.opType = opType;
this.left = left; this.left = left;
this.right = right; this.right = right;
...@@ -72,7 +74,7 @@ public class Operation extends Expression { ...@@ -72,7 +74,7 @@ public class Operation extends Expression {
@Override @Override
public String getSQL() { public String getSQL() {
String sql; String sql;
if (opType == NEGATE) { if (opType == OpType.NEGATE) {
// don't remove the space, otherwise it might end up some thing like // don't remove the space, otherwise it might end up some thing like
// --1 which is a line remark // --1 which is a line remark
sql = "- " + left.getSQL(); sql = "- " + left.getSQL();
...@@ -205,17 +207,17 @@ public class Operation extends Expression { ...@@ -205,17 +207,17 @@ public class Operation extends Expression {
(l == Value.UNKNOWN && r == Value.UNKNOWN)) { (l == Value.UNKNOWN && r == Value.UNKNOWN)) {
// (? + ?) - use decimal by default (the most safe data type) or // (? + ?) - use decimal by default (the most safe data type) or
// string when text concatenation with + is enabled // string when text concatenation with + is enabled
if (opType == PLUS && session.getDatabase(). if (opType == OpType.PLUS && session.getDatabase().
getMode().allowPlusForStringConcat) { getMode().allowPlusForStringConcat) {
dataType = Value.STRING; dataType = Value.STRING;
opType = CONCAT; opType = OpType.CONCAT;
} else { } else {
dataType = Value.DECIMAL; dataType = Value.DECIMAL;
} }
} else if (l == Value.DATE || l == Value.TIMESTAMP || } else if (l == Value.DATE || l == Value.TIMESTAMP ||
l == Value.TIME || r == Value.DATE || l == Value.TIME || r == Value.DATE ||
r == Value.TIMESTAMP || r == Value.TIME) { r == Value.TIMESTAMP || r == Value.TIME) {
if (opType == PLUS) { if (opType == OpType.PLUS) {
if (r != Value.getHigherOrder(l, r)) { if (r != Value.getHigherOrder(l, r)) {
// order left and right: INT < TIME < DATE < TIMESTAMP // order left and right: INT < TIME < DATE < TIMESTAMP
swap(); swap();
...@@ -235,7 +237,7 @@ public class Operation extends Expression { ...@@ -235,7 +237,7 @@ public class Operation extends Expression {
// Oracle date add // Oracle date add
Function f = Function.getFunction(session.getDatabase(), "DATEADD"); Function f = Function.getFunction(session.getDatabase(), "DATEADD");
f.setParameter(0, ValueExpression.get(ValueString.get("SECOND"))); f.setParameter(0, ValueExpression.get(ValueString.get("SECOND")));
left = new Operation(Operation.MULTIPLY, ValueExpression.get(ValueInt left = new Operation(OpType.MULTIPLY, ValueExpression.get(ValueInt
.get(60 * 60 * 24)), left); .get(60 * 60 * 24)), left);
f.setParameter(1, left); f.setParameter(1, left);
f.setParameter(2, right); f.setParameter(2, right);
...@@ -248,12 +250,12 @@ public class Operation extends Expression { ...@@ -248,12 +250,12 @@ public class Operation extends Expression {
dataType = Value.TIMESTAMP; dataType = Value.TIMESTAMP;
return this; return this;
} }
} else if (opType == MINUS) { } else if (opType == OpType.MINUS) {
if ((l == Value.DATE || l == Value.TIMESTAMP) && r == Value.INT) { if ((l == Value.DATE || l == Value.TIMESTAMP) && r == Value.INT) {
// Oracle date subtract // Oracle date subtract
Function f = Function.getFunction(session.getDatabase(), "DATEADD"); Function f = Function.getFunction(session.getDatabase(), "DATEADD");
f.setParameter(0, ValueExpression.get(ValueString.get("DAY"))); f.setParameter(0, ValueExpression.get(ValueString.get("DAY")));
right = new Operation(NEGATE, right, null); right = new Operation(OpType.NEGATE, right, null);
right = right.optimize(session); right = right.optimize(session);
f.setParameter(1, right); f.setParameter(1, right);
f.setParameter(2, left); f.setParameter(2, left);
...@@ -264,9 +266,9 @@ public class Operation extends Expression { ...@@ -264,9 +266,9 @@ public class Operation extends Expression {
// Oracle date subtract // Oracle date subtract
Function f = Function.getFunction(session.getDatabase(), "DATEADD"); Function f = Function.getFunction(session.getDatabase(), "DATEADD");
f.setParameter(0, ValueExpression.get(ValueString.get("SECOND"))); f.setParameter(0, ValueExpression.get(ValueString.get("SECOND")));
right = new Operation(Operation.MULTIPLY, ValueExpression.get(ValueInt right = new Operation(OpType.MULTIPLY, ValueExpression.get(ValueInt
.get(60 * 60 * 24)), right); .get(60 * 60 * 24)), right);
right = new Operation(NEGATE, right, null); right = new Operation(OpType.NEGATE, right, null);
right = right.optimize(session); right = right.optimize(session);
f.setParameter(1, right); f.setParameter(1, right);
f.setParameter(2, left); f.setParameter(2, left);
...@@ -289,7 +291,7 @@ public class Operation extends Expression { ...@@ -289,7 +291,7 @@ public class Operation extends Expression {
dataType = Value.TIME; dataType = Value.TIME;
return this; return this;
} }
} else if (opType == MULTIPLY) { } else if (opType == OpType.MULTIPLY) {
if (l == Value.TIME) { if (l == Value.TIME) {
dataType = Value.TIME; dataType = Value.TIME;
convertRight = false; convertRight = false;
...@@ -300,7 +302,7 @@ public class Operation extends Expression { ...@@ -300,7 +302,7 @@ public class Operation extends Expression {
convertRight = false; convertRight = false;
return this; return this;
} }
} else if (opType == DIVIDE) { } else if (opType == OpType.DIVIDE) {
if (l == Value.TIME) { if (l == Value.TIME) {
dataType = Value.TIME; dataType = Value.TIME;
convertRight = false; convertRight = false;
...@@ -315,7 +317,7 @@ public class Operation extends Expression { ...@@ -315,7 +317,7 @@ public class Operation extends Expression {
dataType = Value.getHigherOrder(l, r); dataType = Value.getHigherOrder(l, r);
if (DataType.isStringType(dataType) && if (DataType.isStringType(dataType) &&
session.getDatabase().getMode().allowPlusForStringConcat) { session.getDatabase().getMode().allowPlusForStringConcat) {
opType = CONCAT; opType = OpType.CONCAT;
} }
} }
break; break;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论