Change the exception on update ad_process to set statistics - sometimes seconds are updated before count
This commit is contained in:
parent
3ca8cdd94a
commit
3c6fa7fe13
|
@ -495,7 +495,7 @@ public abstract class Convert
|
||||||
if (uppStmt.startsWith("SELECT "))
|
if (uppStmt.startsWith("SELECT "))
|
||||||
return true;
|
return true;
|
||||||
// don't log update to statistic process
|
// don't log update to statistic process
|
||||||
if (uppStmt.startsWith("UPDATE AD_PROCESS SET STATISTIC_COUNT="))
|
if (uppStmt.startsWith("UPDATE AD_PROCESS SET STATISTIC_"))
|
||||||
return true;
|
return true;
|
||||||
for (int i = 0; i < exceptionTables.length; i++) {
|
for (int i = 0; i < exceptionTables.length; i++) {
|
||||||
if (uppStmt.startsWith("INSERT INTO " + exceptionTables[i] + " "))
|
if (uppStmt.startsWith("INSERT INTO " + exceptionTables[i] + " "))
|
||||||
|
|
Loading…
Reference in New Issue