IDEMPIERE-4454 Implement filter for SQL debug - unify oracle and postgresql variable (#252)
This commit is contained in:
parent
6771a696cc
commit
d3c9804253
|
@ -371,7 +371,12 @@ public class DB_Oracle implements AdempiereDatabase
|
||||||
public String convertStatement (String oraStatement)
|
public String convertStatement (String oraStatement)
|
||||||
{
|
{
|
||||||
Convert.logMigrationScript(oraStatement, null);
|
Convert.logMigrationScript(oraStatement, null);
|
||||||
if ("true".equals(System.getProperty("org.idempiere.db.oracle.debug"))) {
|
if ("true".equals(System.getProperty("org.idempiere.db.debug"))) {
|
||||||
|
String filterOrDebug = System.getProperty("org.idempiere.db.debug.filter");
|
||||||
|
boolean print = true;
|
||||||
|
if (filterOrDebug != null)
|
||||||
|
print = oraStatement.matches(filterOrDebug);
|
||||||
|
if (print)
|
||||||
log.warning("Oracle -> " + oraStatement);
|
log.warning("Oracle -> " + oraStatement);
|
||||||
}
|
}
|
||||||
return oraStatement;
|
return oraStatement;
|
||||||
|
|
|
@ -15,7 +15,12 @@ public class Convert_Oracle extends Convert {
|
||||||
protected ArrayList<String> convertStatement(String sqlStatement) {
|
protected ArrayList<String> convertStatement(String sqlStatement) {
|
||||||
ArrayList<String> result = new ArrayList<String>();
|
ArrayList<String> result = new ArrayList<String>();
|
||||||
result.add(sqlStatement);
|
result.add(sqlStatement);
|
||||||
if ("true".equals(System.getProperty("org.idempiere.db.oracle.debug"))) {
|
if ("true".equals(System.getProperty("org.idempiere.db.debug"))) {
|
||||||
|
String filterOrDebug = System.getProperty("org.idempiere.db.debug.filter");
|
||||||
|
boolean print = true;
|
||||||
|
if (filterOrDebug != null)
|
||||||
|
print = sqlStatement.matches(filterOrDebug);
|
||||||
|
if (print)
|
||||||
log.warning("Oracle -> " + sqlStatement);
|
log.warning("Oracle -> " + sqlStatement);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -355,8 +355,13 @@ public class DB_PostgreSQL implements AdempiereDatabase
|
||||||
String cache = convertCache.get(oraStatement);
|
String cache = convertCache.get(oraStatement);
|
||||||
if (cache != null) {
|
if (cache != null) {
|
||||||
Convert.logMigrationScript(oraStatement, cache);
|
Convert.logMigrationScript(oraStatement, cache);
|
||||||
if ("true".equals(System.getProperty("org.idempiere.db.postgresql.debug"))) {
|
if ("true".equals(System.getProperty("org.idempiere.db.debug"))) {
|
||||||
|
String filterPgDebug = System.getProperty("org.idempiere.db.debug.filter");
|
||||||
|
boolean print = true;
|
||||||
|
if (filterPgDebug != null)
|
||||||
|
print = cache.matches(filterPgDebug);
|
||||||
// log.warning("Oracle -> " + oraStatement);
|
// log.warning("Oracle -> " + oraStatement);
|
||||||
|
if (print)
|
||||||
log.warning("Pgsql -> " + cache);
|
log.warning("Pgsql -> " + cache);
|
||||||
}
|
}
|
||||||
return cache;
|
return cache;
|
||||||
|
|
|
@ -127,10 +127,17 @@ public class Convert_PostgreSQL extends Convert_SQL92 {
|
||||||
statement = recoverQuotedStrings(statement, retVars);
|
statement = recoverQuotedStrings(statement, retVars);
|
||||||
result.add(statement);
|
result.add(statement);
|
||||||
|
|
||||||
if ("true".equals(System.getProperty("org.idempiere.db.postgresql.debug"))) {
|
if ("true".equals(System.getProperty("org.idempiere.db.debug"))) {
|
||||||
|
String filterPgDebug = System.getProperty("org.idempiere.db.debug.filter");
|
||||||
|
boolean print = true;
|
||||||
|
if (filterPgDebug != null)
|
||||||
|
print = statement.matches(filterPgDebug);
|
||||||
|
// log.warning("Oracle -> " + oraStatement);
|
||||||
|
if (print) {
|
||||||
log.warning("Oracle -> " + sqlStatement);
|
log.warning("Oracle -> " + sqlStatement);
|
||||||
log.warning("PgSQL -> " + statement);
|
log.warning("PgSQL -> " + statement);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
} // convertStatement
|
} // convertStatement
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue