return null;
}
super.log();
LogManager logMgr = Db.getLogManager();
Lsn newLsn = null;
// if (operationFlag == FILE_DELETE_OPERATION) {
// newLsn = logMgr.put(this, LogManager.LOG_FLUSH);//flush log to log file while do delete collection/index operation
// } else {
// newLsn = logMgr.put(this, LogManager.LOG_DATA);//not flush log to log file,just put it to log buffer
// }
/* modified by marriane 2003-11-6,flush log either deleting or creating operation for fixing inconsistent issue */
newLsn = logMgr.put(this, LogManager.LOG_FLUSH);
return newLsn;
}