/** add transaction info to a row just loaded from the cache. called only for CACHED tables */ public void setTransactionInfo(CachedObject object) { if (object.isMemory()) { return; } Row row = (Row) object; RowAction rowact = (RowAction) rowActionMap.get(row.position); row.rowAction = rowact; }
/** add transaction info to a row just loaded from the cache. called only for CACHED tables */ public void setTransactionInfo(CachedObject object) { Row row = (Row) object; if (row.rowAction != null) { return; } RowAction rowact = (RowAction) rowActionMap.get(row.position); row.rowAction = rowact; }