提交 6bfd2807 authored 作者: Thomas Mueller's avatar Thomas Mueller

Performance has been improved a bit.

上级 f7bcb753
...@@ -593,32 +593,32 @@ public class Session extends SessionWithState { ...@@ -593,32 +593,32 @@ public class Session extends SessionWithState {
* Add an undo log entry to this session. * Add an undo log entry to this session.
* *
* @param table the table * @param table the table
* @param type the operation type (see {@link UndoLogRecord}) * @param operation the operation type (see {@link UndoLogRecord})
* @param row the row * @param row the row
*/ */
public void log(Table table, short type, Row row) { public void log(Table table, short operation, Row row) {
log(new UndoLogRecord(table, type, row)); if (undoLogEnabled) {
} UndoLogRecord log = new UndoLogRecord(table, operation, row);
private void log(UndoLogRecord log) {
// called _after_ the row was inserted successfully into the table, // called _after_ the row was inserted successfully into the table,
// otherwise rollback will try to rollback a not-inserted row // otherwise rollback will try to rollback a not-inserted row
if (SysProperties.CHECK) { if (SysProperties.CHECK) {
int lockMode = database.getLockMode(); int lockMode = database.getLockMode();
if (lockMode != Constants.LOCK_MODE_OFF && !database.isMultiVersion()) { if (lockMode != Constants.LOCK_MODE_OFF && !database.isMultiVersion()) {
String type = log.getTable().getTableType(); String tableType = log.getTable().getTableType();
if (locks.indexOf(log.getTable()) < 0 if (locks.indexOf(log.getTable()) < 0
&& !Table.TABLE_LINK.equals(type) && !Table.TABLE_LINK.equals(tableType)
&& !Table.EXTERNAL_TABLE_ENGINE.equals(type)) { && !Table.EXTERNAL_TABLE_ENGINE.equals(tableType)) {
DbException.throwInternalError(); DbException.throwInternalError();
} }
} }
} }
if (undoLogEnabled) {
undoLog.add(log); undoLog.add(log);
} else { } else {
log.commit(); // see also UndoLogRecord.commit
log.getRow().commit(); for (Index index : table.getIndexes()) {
index.commit(operation, row);
}
row.commit();
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论