758759760761762763764765766767768
Map<String, String> aliasMap = getAliasMap(); TableStat stat = getTableStat(ident); Mode mode = getMode(); switch (mode) { case Delete: stat.incrementDeleteCount(); break; case Insert:
207208209210211212213214215216217
x.putAttribute(ATTR_TABLE, ident); TableStat stat = getTableStat(ident); Mode mode = getMode(); switch (mode) { case Delete: stat.incrementDeleteCount(); break; case Insert:
221222223224225226227228229230231
231232233234235236237238
protected Mode getMode() { return mode; } protected void setModeOrigin(SQLObject x) { Mode originalMode = (Mode) x.getAttribute("_original_use_mode"); mode = originalMode; }
236237238239240241242243244245
Mode originalMode = (Mode) x.getAttribute("_original_use_mode"); mode = originalMode; } protected Mode setMode(SQLObject x, Mode mode) { Mode oldMode = this.mode; x.putAttribute("_original_use_mode", oldMode); this.mode = mode; return oldMode; }
879880881882883884885886887888889
152153154155156157158159
157158159160161162163164165166
675676677678679680681682683684685