提交 919d29af authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Fix typo, long line, and whitespace

上级 39882408
...@@ -77,7 +77,7 @@ public class Select extends Query { ...@@ -77,7 +77,7 @@ public class Select extends Query {
boolean[] groupByExpression; boolean[] groupByExpression;
/** /**
* Thhe current group-by values. * The current group-by values.
*/ */
HashMap<Expression, Object> currentGroup; HashMap<Expression, Object> currentGroup;
......
...@@ -27,38 +27,38 @@ public class Operation extends Expression { ...@@ -27,38 +27,38 @@ public class Operation extends Expression {
* This operation represents a string concatenation as in * This operation represents a string concatenation as in
* 'Hello' || 'World'. * 'Hello' || 'World'.
*/ */
CONCAT, CONCAT,
/** /**
* This operation represents an addition as in 1 + 2. * This operation represents an addition as in 1 + 2.
*/ */
PLUS, PLUS,
/** /**
* This operation represents a subtraction as in 2 - 1. * This operation represents a subtraction as in 2 - 1.
*/ */
MINUS, MINUS,
/** /**
* This operation represents a multiplication as in 2 * 3. * This operation represents a multiplication as in 2 * 3.
*/ */
MULTIPLY, MULTIPLY,
/** /**
* This operation represents a division as in 4 * 2. * This operation represents a division as in 4 * 2.
*/ */
DIVIDE, DIVIDE,
/** /**
* This operation represents a negation as in - ID. * This operation represents a negation as in - ID.
*/ */
NEGATE, NEGATE,
/** /**
* This operation represents a modulus as in 5 % 2. * This operation represents a modulus as in 5 % 2.
*/ */
MODULUS MODULUS
}; }
private OpType opType; private OpType opType;
private Expression left, right; private Expression left, right;
......
...@@ -262,7 +262,8 @@ public class TestIndex extends TestBase { ...@@ -262,7 +262,8 @@ public class TestIndex extends TestBase {
c.close(); c.close();
} }
private void testConcurrentUpdateRun(ConcurrentUpdateThread[] threads, PreparedStatement check) throws SQLException { private void testConcurrentUpdateRun(ConcurrentUpdateThread[] threads, PreparedStatement check)
throws SQLException {
for (ConcurrentUpdateThread t : threads) { for (ConcurrentUpdateThread t : threads) {
t.start(); t.start();
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论