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

Fix typo, long line, and whitespace

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