Commit 4deeb23
Submodule doctrine-common updated 2 files
Submodule doctrine-dbal updated 88 files
- composer.json+1-1
- lib/Doctrine/DBAL/Cache/QueryCacheProfile.php+1-1
- lib/Doctrine/DBAL/Cache/ResultCacheStatement.php+2-2
- lib/Doctrine/DBAL/Configuration.php+2-2
- lib/Doctrine/DBAL/ConnectionException.php+1-1
- lib/Doctrine/DBAL/Driver/Connection.php+1-1
- lib/Doctrine/DBAL/Driver/IBMDB2/DB2Driver.php+1-1
- lib/Doctrine/DBAL/Driver/IBMDB2/DB2Exception.php+1-1
- lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php+1-1
- lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php+6-6
- lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php+1-1
- lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php+2-2
- lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php+5-5
- lib/Doctrine/DBAL/Driver/Statement.php+7-7
- lib/Doctrine/DBAL/Event/SchemaAlterTableChangeColumnEventArgs.php+1-1
- lib/Doctrine/DBAL/Event/SchemaCreateTableEventArgs.php+1-1
- lib/Doctrine/DBAL/Platforms/AbstractPlatform.php+21-4
- lib/Doctrine/DBAL/Platforms/Keywords/DB2Keywords.php+2-3
- lib/Doctrine/DBAL/Platforms/Keywords/KeywordList.php+8-8
- lib/Doctrine/DBAL/Platforms/Keywords/MsSQLKeywords.php+1-1
- lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php+1-1
- lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php+1-1
- lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php+1-1
- lib/Doctrine/DBAL/Platforms/Keywords/ReservedKeywordsValidator.php+11-11
- lib/Doctrine/DBAL/Platforms/Keywords/SQLiteKeywords.php+1-1
- lib/Doctrine/DBAL/Platforms/MsSqlPlatform.php+4-12
- lib/Doctrine/DBAL/Platforms/MySqlPlatform.php+1-1
- lib/Doctrine/DBAL/Platforms/OraclePlatform.php+2-2
- lib/Doctrine/DBAL/Portability/Connection.php+11-11
- lib/Doctrine/DBAL/Portability/Statement.php+1-1
- lib/Doctrine/DBAL/Query/Expression/CompositeExpression.php+22-22
- lib/Doctrine/DBAL/Query/Expression/ExpressionBuilder.php+10-10
- lib/Doctrine/DBAL/SQLParserUtils.php+22-22
- lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php+5-5
- lib/Doctrine/DBAL/Schema/Column.php+1-1
- lib/Doctrine/DBAL/Schema/Comparator.php+3-3
- lib/Doctrine/DBAL/Schema/DB2SchemaManager.php+2-2
- lib/Doctrine/DBAL/Schema/Index.php+2-2
- lib/Doctrine/DBAL/Schema/OracleSchemaManager.php+1-1
- lib/Doctrine/DBAL/Schema/Schema.php+6-6
- lib/Doctrine/DBAL/Schema/Sequence.php+1-1
- lib/Doctrine/DBAL/Schema/SqliteSchemaManager.php+2-2
- lib/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php+2-2
- lib/Doctrine/DBAL/Tools/Console/Command/ReservedWordsCommand.php+12-12
- lib/Doctrine/DBAL/Types/BlobType.php+6-1
- lib/Doctrine/DBAL/Types/BooleanType.php+1-1
- lib/Doctrine/DBAL/Types/ConversionException.php+3-3
- lib/Doctrine/DBAL/Types/DateTimeType.php+1-1
- lib/Doctrine/DBAL/Types/DateTimeTzType.php+1-1
- lib/Doctrine/DBAL/Types/DateType.php+2-2
- lib/Doctrine/DBAL/Types/TimeType.php+1-1
- lib/Doctrine/DBAL/Types/Type.php+4
- lib/Doctrine/DBAL/Version.php+3-3
- lib/vendor/doctrine-build-common+1-1
- lib/vendor/doctrine-common+1-1
- tests/Doctrine/Tests/DBAL/ConnectionTest.php+1-1
- tests/Doctrine/Tests/DBAL/Driver/OCI8/OCI8StatementTest.php+4-4
- tests/Doctrine/Tests/DBAL/DriverManagerTest.php+1-1
- tests/Doctrine/Tests/DBAL/Functional/ConnectionTest.php+4-4
- tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php+1-1
- tests/Doctrine/Tests/DBAL/Functional/Schema/MsSqlSchemaManagerTest.php+2-2
- tests/Doctrine/Tests/DBAL/Functional/Schema/MySqlSchemaManagerTest.php+2-2
- tests/Doctrine/Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php+1-1
- tests/Doctrine/Tests/DBAL/Functional/Schema/SqliteSchemaManagerTest.php+1-1
- tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php+1-1
- tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php+1-1
- tests/Doctrine/Tests/DBAL/Platforms/AbstractPlatformTestCase.php+38-3
- tests/Doctrine/Tests/DBAL/Platforms/MsSqlPlatformTest.php+16-1
- tests/Doctrine/Tests/DBAL/Platforms/MySqlPlatformTest.php+13-8
- tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php+14-6
- tests/Doctrine/Tests/DBAL/Platforms/PostgreSqlPlatformTest.php+9-1
- tests/Doctrine/Tests/DBAL/Platforms/ReservedKeywordsValidatorTest.php+6-6
- tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php+5-5
- tests/Doctrine/Tests/DBAL/Query/Expression/CompositeExpressionTest.php+20-20
- tests/Doctrine/Tests/DBAL/Query/Expression/ExpressionBuilderTest.php+38-38
- tests/Doctrine/Tests/DBAL/SQLParserUtilsTest.php+8-8
- tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php+10-10
- tests/Doctrine/Tests/DBAL/Types/ArrayTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/BooleanTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/DateTest.php+2-2
- tests/Doctrine/Tests/DBAL/Types/DecimalTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/ObjectTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/SmallIntTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/StringTest.php+1-1
- tests/Doctrine/Tests/DBAL/Types/TimeTest.php+1-1
- tests/Doctrine/Tests/Mocks/DriverMock.php+1-1
- tests/Doctrine/Tests/Mocks/HydratorMockStatement.php+14-14
- tests/Doctrine/Tests/Mocks/SchemaManagerMock.php+1-1
0 commit comments