765766767768769770771772773774775
Map<String, String> aliasMap = getAliasMap(); TableStat stat = getTableStat(ident); Mode mode = getMode(); switch (mode) { case Delete: stat.incrementDeleteCount(); break; case Insert:
212213214215216217218219
protected Mode getMode() { return mode; } protected void setModeOrigin(SQLObject x) { Mode originalMode = (Mode) x.getAttribute("_original_use_mode"); mode = originalMode; }
217218219220221222223224225226
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; }
788789790791792793794795796797798
225226227228229230231232
230231232233234235236237238239
810811812813814815816817818819820
227228229230231232233234235236237
x.putAttribute(ATTR_TABLE, ident); TableStat stat = getTableStat(ident); Mode mode = getMode(); switch (mode) { case Delete: stat.incrementDeleteCount(); break; case Insert:
215216217218219220221222
220221222223224225226227228229