222223224225226227228229230231232
x.putAttribute(ATTR_TABLE, ident); TableStat stat = getTableStat(ident); Mode mode = getMode(); switch (mode) { case Delete: stat.incrementDeleteCount(); break; case Insert:
246247248249250251252253
protected Mode getMode() { return mode; } protected void setModeOrigin(SQLObject x) { Mode originalMode = (Mode) x.getAttribute("_original_use_mode"); mode = originalMode; }
251252253254255256257258259260
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; }
900901902903904905906907908909910
Map<String, String> aliasMap = getAliasMap(); TableStat stat = getTableStat(ident); Mode mode = getMode(); if (mode != null) { switch (mode) { case Delete: stat.incrementDeleteCount(); break;
225226227228229230231232233234235
250251252253254255256257
255256257258259260261262263264
904905906907908909910911912913914
189190191192193194195196
194195196197198199200201202203