Index: trunk/kernel/include/adodb/adodb.inc.php =================================================================== diff -u -N -r8436 -r8815 --- trunk/kernel/include/adodb/adodb.inc.php (.../adodb.inc.php) (revision 8436) +++ trunk/kernel/include/adodb/adodb.inc.php (.../adodb.inc.php) (revision 8815) @@ -737,13 +737,12 @@ $profileSQLs = constOn('DBG_SQL_PROFILE'); if ($profileSQLs) { - $isSkipTable = isSkipTable($sql); $queryID = $debugger->generateID(); - if(!$isSkipTable) $debugger->profileStart('sql_'.$queryID, $debugger->formatSQL($sql) ); + $debugger->profileStart('sql_'.$queryID, $debugger->formatSQL($sql) ); //$debugger->appendTrace(); } $this->_queryID = $this->_query($sql,$inputarr,$arg3); - if ($profileSQLs && !$isSkipTable) { + if ($profileSQLs) { $debugger->profileFinish('sql_'.$queryID, null, null, $this->Affected_Rows()); $debugger->profilerAddTotal('sql', 'sql_'.$queryID); }