===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-doctrine-dbal-2.12.1/UPGRADE.md-59-
php-doctrine-dbal-2.12.1/UPGRADE.md:60:* `PDOConnection::query(?string $query = null, ?int $fetchMode = null, mixed ...$fetchModeArgs)`
php-doctrine-dbal-2.12.1/UPGRADE.md:61:* `PDOStatement::setFetchMode($mode, ...$args)`
php-doctrine-dbal-2.12.1/UPGRADE.md:62:* `PDOStatement::fetchAll($mode = null, ...$args)`
php-doctrine-dbal-2.12.1/UPGRADE.md-63-
##############################################
php-doctrine-dbal-2.12.1/UPGRADE.md-344-
php-doctrine-dbal-2.12.1/UPGRADE.md:345:- The usage of NULL to indicate empty `$username` or `$password` when calling `connect()` is deprecated. Use an empty string instead.
php-doctrine-dbal-2.12.1/UPGRADE.md-346-
##############################################
php-doctrine-dbal-2.12.1/UPGRADE.md-350-
php-doctrine-dbal-2.12.1/UPGRADE.md:351:## Deprecated `Doctrine\DBAL\Driver\OCI8\OCI8Statement::$_PARAM`
php-doctrine-dbal-2.12.1/UPGRADE.md-352-
php-doctrine-dbal-2.12.1/UPGRADE.md:353:Property `Doctrine\DBAL\Driver\OCI8\OCI8Statement::$_PARAM` has been deprecated as not used.
php-doctrine-dbal-2.12.1/UPGRADE.md-354-
##############################################
php-doctrine-dbal-2.12.1/UPGRADE.md-418-
php-doctrine-dbal-2.12.1/UPGRADE.md:419:## Deprecated `NULL` value of `$offset` in LIMIT queries
php-doctrine-dbal-2.12.1/UPGRADE.md-420-
php-doctrine-dbal-2.12.1/UPGRADE.md:421:The `NULL` value of the `$offset` argument in `AbstractPlatform::(do)?ModifyLimitQuery()` methods is deprecated. If explicitly used in the method call, the absence of the offset should be indicated with a `0`.
php-doctrine-dbal-2.12.1/UPGRADE.md-422-
##############################################
php-doctrine-dbal-2.12.1/UPGRADE.md-554-
php-doctrine-dbal-2.12.1/UPGRADE.md:555:The visibility of the property ``$_platform`` in ``Doctrine\DBAL\Connection``
php-doctrine-dbal-2.12.1/UPGRADE.md-556-was changed from protected to private. If you have subclassed ``Doctrine\DBAL\Connection``
php-doctrine-dbal-2.12.1/UPGRADE.md:557:in your application and accessed ``$_platform`` directly, you have to change the code
php-doctrine-dbal-2.12.1/UPGRADE.md-558-portions to use ``getDatabasePlatform()`` instead to retrieve the underlying database
##############################################
php-doctrine-dbal-2.12.1/UPGRADE.md-580-Before 2.5 the DateTime type always required a specific format, defined in
php-doctrine-dbal-2.12.1/UPGRADE.md:581:`$platform->getDateTimeFormatString()`, which could cause quite some troubles
php-doctrine-dbal-2.12.1/UPGRADE.md-582-on platforms that had various microtime precision formats. Starting with 2.5
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1458-            } else {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1459:                $result = $connection->exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1460-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1487-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1488:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1489-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1497-        try {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1498:            $result = $connection->exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1499-        } catch (Throwable $e) {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1802-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1803:        $this->getWrappedConnection()->exec($this->platform->createSavePoint($savepoint));
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1804-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1824-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1825:        $this->getWrappedConnection()->exec($this->platform->releaseSavePoint($savepoint));
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1826-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1842-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php:1843:        $this->getWrappedConnection()->exec($this->platform->rollbackSavePoint($savepoint));
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connection.php-1844-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php-362-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php:363:    public function exec($statement)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php-364-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php-366-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php:367:        return parent::exec($statement);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Connections/PrimaryReadReplicaConnection.php-368-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Connection.php-47-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Connection.php:48:    public function exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Connection.php-49-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php-131-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php:132:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php-133-    {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php:134:        $stmt = @db2_exec($this->conn, $sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/IBMDB2/DB2Connection.php-135-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php-167-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php:168:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php-169-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php-147-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php:148:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php-149-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php-48-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php:49:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php-50-    {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php-51-        try {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php:52:            $result = parent::exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOConnection.php-53-            assert($result !== false);
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php-45-            if (isset($params['charset'])) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php:46:                $pdo->exec('SET NAMES \'' . $params['charset'] . '\'');
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php-47-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereConnection.php-117-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereConnection.php:118:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereConnection.php-119-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvConnection.php-122-     */
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvConnection.php:123:    public function exec($sql)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvConnection.php-124-    {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Event/Listeners/SQLSessionInit.php-30-        $conn = $args->getConnection();
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Event/Listeners/SQLSessionInit.php:31:        $conn->exec($this->sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Event/Listeners/SQLSessionInit.php-32-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Id/TableGenerator.php-112-                . ' FROM ' . $platform->appendLockHint($this->generatorTableName, LockMode::PESSIMISTIC_WRITE)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Id/TableGenerator.php:113:                . ' WHERE sequence_name = ? ' . $platform->getWriteLockSQL();
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Id/TableGenerator.php-114-            $row      = $this->conn->fetchAssociative($sql, [$sequence]);
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-312-                       AND c.colname = k.colname)
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php:313:               WHERE UPPER(c.tabname) = UPPER(" . $table . ')
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-314-               ORDER BY c.colno
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-359-                ON       idx.INDSCHEMA = idxcol.INDSCHEMA AND idx.INDNAME = idxcol.INDNAME
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php:360:                WHERE    idx.TABNAME = UPPER(" . $table . ')
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-361-                ORDER BY idxcol.COLSEQ ASC';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-393-                AND      fk.REFTABNAME = pkcol.TABNAME
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php:394:                WHERE    fk.TABNAME = UPPER(" . $table . ')
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DB2Platform.php-395-                ORDER BY fkcol.COLSEQ ASC';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-336-               ' FROM DATA_DICTIONARY.COLUMNS' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php:337:               ' WHERE TABLE_SCHEMA=' . $databaseSQL . ' AND TABLE_NAME = ' . $this->quoteStringLiteral($table);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-338-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-356-            . ' FROM DATA_DICTIONARY.FOREIGN_KEYS'
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php:357:            . ' WHERE CONSTRAINT_SCHEMA=' . $databaseSQL
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-358-            . ' AND CONSTRAINT_TABLE=' . $this->quoteStringLiteral($table);
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-376-            . ' FROM DATA_DICTIONARY.INDEX_PARTS'
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php:377:            . ' WHERE TABLE_SCHEMA=' . $databaseSQL . ' AND TABLE_NAME=' . $this->quoteStringLiteral($table);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php-378-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-159-                   ' SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php:160:                   ' FROM information_schema.STATISTICS WHERE TABLE_NAME = ' . $table .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-161-                   ' AND TABLE_SCHEMA = ' . $database .
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-174-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php:175:        return 'SELECT * FROM information_schema.VIEWS WHERE TABLE_SCHEMA = ' . $database;
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-176-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-196-               '  c.constraint_name = k.constraint_name AND ' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php:197:               '  c.table_name = ' . $table . ' */ WHERE k.table_name = ' . $table;
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-198-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-381-               'CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation ' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php:382:               'FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = ' . $database . ' AND TABLE_NAME = ' . $table .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php-383-               ' ORDER BY ORDINAL_POSITION ASC';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-380-        return 'SELECT sequence_name, min_value, increment_by FROM sys.all_sequences ' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:381:               'WHERE SEQUENCE_OWNER = ' . $database;
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-382-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-451-             FROM      user_ind_columns uind_col
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:452:             WHERE     uind_col.table_name = " . $table . '
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-453-             ORDER BY  uind_col.column_position ASC';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-513-BEGIN
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:514:  SELECT COUNT(CONSTRAINT_NAME) INTO constraints_Count FROM USER_CONSTRAINTS WHERE TABLE_NAME = '" . $unquotedTableName
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-515-            . "' AND CONSTRAINT_TYPE = 'P';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-541-        FROM User_Sequences
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:542:       WHERE Sequence_Name = \'' . $sequence->getName() . '\';
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-543-      SELECT :NEW.' . $quotedName . ' INTO last_InsertID FROM DUAL;
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-667-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:668:        return 'SELECT * FROM user_constraints WHERE table_name = ' . $table;
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-669-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-1044-            if ($limit !== null) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:1045:                $query .= sprintf(' WHERE ROWNUM <= %d', $offset + $limit);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-1046-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-1048-            if ($offset > 0) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php:1049:                $query = sprintf('SELECT * FROM (%s) WHERE doctrine_rownum >= %d', $query, $offset + 1);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/OraclePlatform.php-1050-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php-28-                FROM   information_schema.sequences
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php:29:                WHERE  sequence_catalog = ' . $this->quoteStringLiteral($database) . "
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php-30-                AND    sequence_schema NOT LIKE 'pg\_%'
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php-454-    {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php:455:        return "UPDATE pg_database SET datallowconn = 'false' WHERE datname = " . $this->quoteStringLiteral($database);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php-456-    }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php-625-                'JOIN sys.tables tbl ON dc.parent_object_id = tbl.object_id ' .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php:626:                "WHERE tbl.name = '" . $newName->getName() . "';" .
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php-627-                'EXEC sp_executesql @sql';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-839-        $args  = array_filter($args); // https://github.com/doctrine/dbal/issues/4282
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:840:        $where = $this->getQueryPart('where');
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-841-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-843-            if (count($args) > 0) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:844:                $where = $where->with(...$args);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-845-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-847-            array_unshift($args, $where);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:848:            $where = CompositeExpression::and(...$args);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-849-        }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-875-        $args  = array_filter($args); // https://github.com/doctrine/dbal/issues/4282
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:876:        $where = $this->getQueryPart('where');
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-877-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-879-            if (count($args) > 0) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:880:                $where = $where->with(...$args);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-881-            }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-883-            array_unshift($args, $where);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php:884:            $where = CompositeExpression::or(...$args);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Query/QueryBuilder.php-885-        }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/OracleSchemaManager.php-381-    s.username = ?
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/OracleSchemaManager.php:382:    AND p.addr(+) = s.paddr
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/OracleSchemaManager.php-383-SQL;
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php-309-            INNER JOIN syscolumns Col ON Col.[ColID] = DefCons.[parent_column_id] AND Col.[ID] = Tab.[ID]
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php:310:            WHERE Col.[Name] = " . $this->_conn->quote($column) . ' AND Tab.[Name] = ' . $this->_conn->quote($table) . '
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php-311-            ORDER BY Col.[Name]';
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php-31-            try {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php:32:                $this->conn->exec($s);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php-33-            } catch (Throwable $e) {
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php-45-        foreach ($sql as $s) {
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php:46:            $this->conn->exec($s);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Schema/Synchronizer/AbstractSchemaSynchronizer.php-47-        }
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-115-        $sql = 'USE FEDERATION ROOT WITH RESET';
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php:116:        $this->conn->exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-117-        $this->currentDistributionValue = null;
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-137-
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php:138:        $this->conn->exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-139-        $this->currentDistributionValue = $distributionValue;
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-160-                      INNER JOIN sys.federations f ON f.federation_id = d.federation_id
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php:161:                      WHERE f.name = ' . $this->conn->quote($this->federationName);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-162-
##############################################
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-208-               $this->conn->quote($splitDistributionValue, $type->getBindingType()) . ')';
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php:209:        $this->conn->exec($sql);
php-doctrine-dbal-2.12.1/lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php-210-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php-665-    {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php:666:        $sql  = 'SELECT * FROM fetch_table WHERE test_string = ' . $this->connection->quote("bar' OR '1'='1");
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php-667-        $rows = $this->connection->fetchAll($sql);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Driver/PDOPgSql/DriverTest.php-84-        $hash      = microtime(true); // required to identify the record in the results uniquely
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Driver/PDOPgSql/DriverTest.php:85:        $sql       = sprintf('SELECT * FROM pg_stat_activity WHERE %d = %d', $hash, $hash);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Driver/PDOPgSql/DriverTest.php-86-        $statement = $connection->query($sql);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-228-        foreach ($schema->toSql($this->connection->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:229:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-230-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-243-        foreach ($schema->toSql($this->connection->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:244:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-245-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-261-        foreach ($schema->toSql($this->connection->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:262:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-263-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-278-        foreach ($schema->toSql($this->connection->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:279:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-280-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-318-        if ($this->isLinuxRoot()) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:319:            exec(sprintf('chattr +i %s', $filename));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-320-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-342-            foreach ($schema->toSql($conn->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:343:                $conn->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-344-            }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-391-        foreach ($schema->toSql($conn->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:392:            $conn->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-393-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-441-        if ($this->isLinuxRoot()) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php:442:            exec(sprintf('chattr -i %s', $filename));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php-443-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php-37-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php:38:        $this->connection->exec($this->connection->getDatabasePlatform()->getTruncateTableSQL('modify_limit_table'));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php:39:        $this->connection->exec($this->connection->getDatabasePlatform()->getTruncateTableSQL('modify_limit_table2'));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php-40-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Platform/NewPrimaryKeyWithNewAutoIncrementColumnTest.php-51-        foreach ($diff->toSql($this->getPlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Platform/NewPrimaryKeyWithNewAutoIncrementColumnTest.php:52:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Platform/NewPrimaryKeyWithNewAutoIncrementColumnTest.php-53-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php-38-        TestUtil::getPrivilegedConnection()
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php:39:            ->exec('GRANT ALL PRIVILEGES TO ' . $GLOBALS['db_user']);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php-40-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-63-        $createDomainTypeSQL = 'CREATE DOMAIN MyMoney AS DECIMAL(18,2)';
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php:64:        $this->connection->exec($createDomainTypeSQL);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-65-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-66-        $createTableSQL = 'CREATE TABLE domain_type_test (id INT PRIMARY KEY, value MyMoney)';
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php:67:        $this->connection->exec($createTableSQL);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-68-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-180-            . ' (id integer CONSTRAINT id_something PRIMARY KEY NOT NULL, "table" integer)';
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php:181:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-182-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-184-            . ' FOREIGN KEY( "table" ) REFERENCES dbal91_something ON UPDATE CASCADE;';
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php:185:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php-186-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php-646-        foreach ($diff->toSql($this->schemaManager->getDatabasePlatform()) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php:647:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php-648-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php-173-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php:174:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php-175-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TableGeneratorTest.php-30-            foreach ($schema->toSql($platform) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TableGeneratorTest.php:31:                $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TableGeneratorTest.php-32-            }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-15-        try {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php:16:            $this->connection->exec($this->connection->getDatabasePlatform()->getDropTableSQL('nontemporary'));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-17-        } catch (Throwable $e) {
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-25-                $tempTable = $this->connection->getDatabasePlatform()->getTemporaryTableName('my_temporary');
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php:26:                $this->connection->exec($this->connection->getDatabasePlatform()->getDropTemporaryTableSQL($tempTable));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-27-            } catch (Throwable $e) {
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-58-        $this->connection->insert('nontemporary', ['id' => 1]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php:59:        $this->connection->exec($platform->getDropTemporaryTableSQL($tempTable));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-60-        $this->connection->insert('nontemporary', ['id' => 2]);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-92-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php:93:        $this->connection->exec($createTempTableSQL);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-94-        $this->connection->insert('nontemporary', ['id' => 2]);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-98-        try {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php:99:            $this->connection->exec($platform->getDropTemporaryTableSQL($tempTable));
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php-100-        } catch (Throwable $e) {
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-51-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php:52:        $row = $this->connection->fetchAssoc('SELECT bool_col FROM dbal630 WHERE id = ?', [$id]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-53-        self::assertNotFalse($row);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-67-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php:68:        $row = $this->connection->fetchAssoc('SELECT bool_col FROM dbal630 WHERE id = ?', [$id]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-69-        self::assertNotFalse($row);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-87-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php:88:        $row = $this->connection->fetchAssoc('SELECT bool_col FROM dbal630 WHERE id = ?', [$id]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-89-        self::assertNotFalse($row);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-112-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php:113:        $row = $this->connection->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', [$id]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-114-        self::assertNotFalse($row);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-141-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php:142:        $row = $this->connection->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', [$id]);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL630Test.php-143-        self::assertNotFalse($row);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php-247-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php:248:        $sql = 'SELECT ' . $columnName . ' FROM type_conversion WHERE id = ' . self::$typeCounter;
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php-249-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-304-        foreach ($platform->getCreateTableSQL($table) as $sql) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php:305:            $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-306-        }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-313-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php:314:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-315-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-317-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php:318:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php-319-
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-288-        $sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10, 0);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php:289:        self::assertEquals('SELECT a.* FROM (SELECT * FROM user) a WHERE ROWNUM <= 10', $sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-290-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-294-        $sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php:295:        self::assertEquals('SELECT a.* FROM (SELECT * FROM user) a WHERE ROWNUM <= 10', $sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-296-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-324-        $sql = $this->platform->modifyLimitQuery('SELECT * FROM user ORDER BY username ASC', 10);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php:325:        self::assertEquals('SELECT a.* FROM (SELECT * FROM user ORDER BY username ASC) a WHERE ROWNUM <= 10', $sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-326-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-330-        $sql = $this->platform->modifyLimitQuery('SELECT * FROM user ORDER BY username DESC', 10);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php:331:        self::assertEquals('SELECT a.* FROM (SELECT * FROM user ORDER BY username DESC) a WHERE ROWNUM <= 10', $sql);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php-332-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-66-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:67:        self::assertEquals('SELECT u.id FROM users u WHERE u.nickname = ?', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-68-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-138-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:139:        self::assertEquals('SELECT u.*, p.* FROM users u WHERE (u.username = ?) AND (u.name = ?)', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-140-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-151-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:152:        self::assertEquals('SELECT u.*, p.* FROM users u WHERE (u.username = ?) OR (u.name = ?)', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-153-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-164-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:165:        self::assertEquals('SELECT u.*, p.* FROM users u WHERE (u.username = ?) OR (u.name = ?)', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-166-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-452-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:453:        self::assertEquals('UPDATE users u SET u.foo = ? WHERE u.foo = ?', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-454-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-488-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:489:        self::assertEquals('DELETE FROM users u WHERE u.foo = ?', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-490-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-630-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:631:        self::assertEquals('SELECT u.* FROM users u WHERE u.name = ?', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-632-        $qb->resetQueryPart('where');
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-641-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:642:        self::assertEquals('SELECT u.* FROM users u WHERE u.name = ? ORDER BY u.name ASC', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-643-        $qb->resetQueryParts(['where', 'orderBy']);
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-654-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:655:        self::assertEquals('SELECT u.* FROM users u WHERE u.name = :dcValue1', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-656-        self::assertEquals(10, $qb->getParameter('dcValue1'));
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-667-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:668:        self::assertEquals('SELECT u.* FROM users u WHERE u.name = :test', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-669-        self::assertEquals(10, $qb->getParameter('test'));
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-680-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:681:        self::assertEquals('SELECT u.* FROM users u WHERE u.name = ?', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-682-        self::assertEquals(10, $qb->getParameter(1));
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-832-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:833:        self::assertEquals('SELECT id, name FROM users WHERE awesome=9001', (string) $qb);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-834-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-962-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:963:        self::assertSame('SELECT id FROM foo WHERE a = b', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-964-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-974-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:975:        self::assertSame('SELECT id FROM foo WHERE a = b', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-976-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-987-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:988:        self::assertSame('SELECT id FROM foo WHERE (a = b) AND (c = d)', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-989-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1000-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:1001:        self::assertSame('SELECT id FROM foo WHERE a = b', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1002-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1012-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:1013:        self::assertSame('SELECT id FROM foo WHERE a = b', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1014-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1025-
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php:1026:        self::assertSame('SELECT id FROM foo WHERE (a = b) OR (c = d)', $qb->getSQL());
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php-1027-    }
##############################################
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/TestUtil.php-106-            foreach ($stmts as $stmt) {
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/TestUtil.php:107:                $testConn->exec($stmt);
php-doctrine-dbal-2.12.1/tests/Doctrine/Tests/TestUtil.php-108-            }
##############################################
php-doctrine-dbal-2.12.1/.pc/0002-Revert-Update-PHPUnit-to-9.2.patch/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php-173-
php-doctrine-dbal-2.12.1/.pc/0002-Revert-Update-PHPUnit-to-9.2.patch/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php:174:        $this->connection->exec($sql);
php-doctrine-dbal-2.12.1/.pc/0002-Revert-Update-PHPUnit-to-9.2.patch/tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php-175-