提交 1f0b2ebe authored 作者: Thomas Mueller's avatar Thomas Mueller

Small improvements.

上级 e64e10f5
...@@ -163,7 +163,7 @@ public class Update extends Prepared { ...@@ -163,7 +163,7 @@ public class Update extends Prepared {
condition = condition.optimize(session); condition = condition.optimize(session);
condition.createIndexConditions(session, tableFilter); condition.createIndexConditions(session, tableFilter);
} }
for (int i = 0; i < expressions.length; i++) { for (int i = 0, len = expressions.length; i < len; i++) {
Expression expr = expressions[i]; Expression expr = expressions[i];
if (expr != null) { if (expr != null) {
expr.mapColumns(tableFilter, 0); expr.mapColumns(tableFilter, 0);
......
...@@ -302,7 +302,7 @@ public class ConstraintReferential extends Constraint { ...@@ -302,7 +302,7 @@ public class ConstraintReferential extends Constraint {
// special case self referencing constraints: // special case self referencing constraints:
// check the inserted row first // check the inserted row first
boolean self = true; boolean self = true;
for (int i = 0; i < columns.length; i++) { for (int i = 0, len = columns.length; i < len; i++) {
int idx = columns[i].column.getColumnId(); int idx = columns[i].column.getColumnId();
Value v = newRow.getValue(idx); Value v = newRow.getValue(idx);
Column refCol = refColumns[i].column; Column refCol = refColumns[i].column;
...@@ -318,7 +318,7 @@ public class ConstraintReferential extends Constraint { ...@@ -318,7 +318,7 @@ public class ConstraintReferential extends Constraint {
} }
} }
Row check = refTable.getTemplateRow(); Row check = refTable.getTemplateRow();
for (int i = 0; i < columns.length; i++) { for (int i = 0, len = columns.length; i < len; i++) {
int idx = columns[i].column.getColumnId(); int idx = columns[i].column.getColumnId();
Value v = newRow.getValue(idx); Value v = newRow.getValue(idx);
Column refCol = refColumns[i].column; Column refCol = refColumns[i].column;
...@@ -343,7 +343,8 @@ public class ConstraintReferential extends Constraint { ...@@ -343,7 +343,8 @@ public class ConstraintReferential extends Constraint {
} }
Column[] cols = searchIndex.getColumns(); Column[] cols = searchIndex.getColumns();
boolean allEqual = true; boolean allEqual = true;
for (int i = 0; i < columns.length && i < cols.length; i++) { int len = Math.min(columns.length, cols.length);
for (int i = 0; i < len; i++) {
int idx = cols[i].getColumnId(); int idx = cols[i].getColumnId();
Value c = check.getValue(idx); Value c = check.getValue(idx);
Value f = found.getValue(idx); Value f = found.getValue(idx);
...@@ -365,7 +366,7 @@ public class ConstraintReferential extends Constraint { ...@@ -365,7 +366,7 @@ public class ConstraintReferential extends Constraint {
private void checkRow(Session session, Row oldRow) { private void checkRow(Session session, Row oldRow) {
SearchRow check = table.getTemplateSimpleRow(false); SearchRow check = table.getTemplateSimpleRow(false);
for (int i = 0; i < columns.length; i++) { for (int i = 0, len = columns.length; i < len; i++) {
Column refCol = refColumns[i].column; Column refCol = refColumns[i].column;
int refIdx = refCol.getColumnId(); int refIdx = refCol.getColumnId();
Column col = columns[i].column; Column col = columns[i].column;
...@@ -410,7 +411,7 @@ public class ConstraintReferential extends Constraint { ...@@ -410,7 +411,7 @@ public class ConstraintReferential extends Constraint {
Prepared updateCommand = getUpdate(session); Prepared updateCommand = getUpdate(session);
if (updateAction == CASCADE) { if (updateAction == CASCADE) {
ArrayList<Parameter> params = updateCommand.getParameters(); ArrayList<Parameter> params = updateCommand.getParameters();
for (int i = 0; i < columns.length; i++) { for (int i = 0, len = columns.length; i < len; i++) {
Parameter param = params.get(i); Parameter param = params.get(i);
Column refCol = refColumns[i].column; Column refCol = refColumns[i].column;
param.setValue(newRow.getValue(refCol.getColumnId())); param.setValue(newRow.getValue(refCol.getColumnId()));
...@@ -436,7 +437,7 @@ public class ConstraintReferential extends Constraint { ...@@ -436,7 +437,7 @@ public class ConstraintReferential extends Constraint {
} }
private void setWhere(Prepared command, int pos, Row row) { private void setWhere(Prepared command, int pos, Row row) {
for (int i = 0; i < refColumns.length; i++) { for (int i = 0, len = refColumns.length; i < len; i++) {
int idx = refColumns[i].column.getColumnId(); int idx = refColumns[i].column.getColumnId();
Value v = row.getValue(idx); Value v = row.getValue(idx);
ArrayList<Parameter> params = command.getParameters(); ArrayList<Parameter> params = command.getParameters();
...@@ -526,7 +527,7 @@ public class ConstraintReferential extends Constraint { ...@@ -526,7 +527,7 @@ public class ConstraintReferential extends Constraint {
Prepared command = session.prepare(sql); Prepared command = session.prepare(sql);
if (action != CASCADE) { if (action != CASCADE) {
ArrayList<Parameter> params = command.getParameters(); ArrayList<Parameter> params = command.getParameters();
for (int i = 0; i < columns.length; i++) { for (int i = 0, len = columns.length; i < len; i++) {
Column column = columns[i].column; Column column = columns[i].column;
Parameter param = params.get(i); Parameter param = params.get(i);
Value value; Value value;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论