Skip to content

Commit

Permalink
Upgrade Dependencies to Common RC2 and DBAL RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Nov 18, 2010
1 parent a2cbb8f commit 1541765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/vendor/doctrine-dbal
Submodule doctrine-dbal updated 77 files
+3 −3 bin/doctrine-dbal.php
+2 −0 build.properties.dev
+41 −11 build.xml
+107 −3 lib/Doctrine/DBAL/Connection.php
+10 −0 lib/Doctrine/DBAL/ConnectionException.php
+3 −5 lib/Doctrine/DBAL/Driver/OCI8/Driver.php
+68 −16 lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php
+35 −15 lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+0 −84 lib/Doctrine/DBAL/Driver/PDOMsSql/Driver.php
+12 −27 lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php
+10 −18 lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php
+1 −2 lib/Doctrine/DBAL/DriverManager.php
+130 −90 lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+26 −4 lib/Doctrine/DBAL/Platforms/DB2Platform.php
+343 −105 lib/Doctrine/DBAL/Platforms/MsSqlPlatform.php
+7 −23 lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
+30 −9 lib/Doctrine/DBAL/Platforms/OraclePlatform.php
+40 −40 lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+3 −3 lib/Doctrine/DBAL/Platforms/SqlitePlatform.php
+31 −0 lib/Doctrine/DBAL/Schema/AbstractAsset.php
+7 −8 lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
+3 −29 lib/Doctrine/DBAL/Schema/Comparator.php
+69 −2 lib/Doctrine/DBAL/Schema/Index.php
+61 −122 lib/Doctrine/DBAL/Schema/MsSqlSchemaManager.php
+3 −3 lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
+20 −17 lib/Doctrine/DBAL/Schema/Table.php
+3 −1 lib/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php
+4 −8 lib/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php
+0 −82 lib/Doctrine/DBAL/Schema/Visitor/FixSchema.php
+0 −2 lib/Doctrine/DBAL/Types/DecimalType.php
+54 −0 lib/Doctrine/DBAL/Types/FloatType.php
+3 −1 lib/Doctrine/DBAL/Types/Type.php
+2 −2 lib/Doctrine/DBAL/Version.php
+585 −646 lib/vendor/Symfony/Component/Console/Application.php
+439 −457 lib/vendor/Symfony/Component/Console/Command/Command.php
+37 −43 lib/vendor/Symfony/Component/Console/Command/HelpCommand.php
+26 −31 lib/vendor/Symfony/Component/Console/Command/ListCommand.php
+77 −86 lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php
+52 −59 lib/vendor/Symfony/Component/Console/Helper/FormatterHelper.php
+21 −24 lib/vendor/Symfony/Component/Console/Helper/Helper.php
+20 −22 lib/vendor/Symfony/Component/Console/Helper/HelperInterface.php
+69 −71 lib/vendor/Symfony/Component/Console/Helper/HelperSet.php
+181 −210 lib/vendor/Symfony/Component/Console/Input/ArgvInput.php
+117 −129 lib/vendor/Symfony/Component/Console/Input/ArrayInput.php
+156 −155 lib/vendor/Symfony/Component/Console/Input/Input.php
+92 −98 lib/vendor/Symfony/Component/Console/Input/InputArgument.php
+371 −407 lib/vendor/Symfony/Component/Console/Input/InputDefinition.php
+37 −39 lib/vendor/Symfony/Component/Console/Input/InputInterface.php
+135 −148 lib/vendor/Symfony/Component/Console/Input/InputOption.php
+42 −51 lib/vendor/Symfony/Component/Console/Input/StringInput.php
+12 −14 lib/vendor/Symfony/Component/Console/Output/ConsoleOutput.php
+11 −13 lib/vendor/Symfony/Component/Console/Output/NullOutput.php
+179 −178 lib/vendor/Symfony/Component/Console/Output/Output.php
+24 −23 lib/vendor/Symfony/Component/Console/Output/OutputInterface.php
+65 −69 lib/vendor/Symfony/Component/Console/Output/StreamOutput.php
+86 −96 lib/vendor/Symfony/Component/Console/Shell.php
+79 −70 lib/vendor/Symfony/Component/Console/Tester/ApplicationTester.php
+79 −70 lib/vendor/Symfony/Component/Console/Tester/CommandTester.php
+1 −1 lib/vendor/doctrine-common
+1 −0 tests/Doctrine/Tests/DBAL/AllTests.php
+107 −3 tests/Doctrine/Tests/DBAL/Functional/ConnectionTest.php
+12 −0 tests/Doctrine/Tests/DBAL/Functional/Schema/MsSqlSchemaManagerTest.php
+4 −1 tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+4 −0 tests/Doctrine/Tests/DBAL/Functional/TypeConversionTest.php
+50 −36 tests/Doctrine/Tests/DBAL/Platforms/MsSqlPlatformTest.php
+2 −2 tests/Doctrine/Tests/DBAL/Platforms/MySqlPlatformTest.php
+16 −0 tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php
+41 −0 tests/Doctrine/Tests/DBAL/Schema/IndexTest.php
+0 −33 tests/Doctrine/Tests/DBAL/Schema/SchemaTest.php
+80 −9 tests/Doctrine/Tests/DBAL/Schema/TableTest.php
+1 −1 tests/Doctrine/Tests/DBAL/Schema/Visitor/SchemaSqlCollectorTest.php
+39 −0 tests/Doctrine/Tests/DBAL/Types/FloatTest.php
+78 −0 tests/Doctrine/Tests/DBAL/UtilTest.php
+3 −11 tests/Doctrine/Tests/DbalFunctionalTestCase.php
+1 −12 tests/Doctrine/Tests/DbalFunctionalTestSuite.php
+0 −2 tests/Doctrine/Tests/TestInit.php
+0 −249 tests/NativePhpunitTask.php

0 comments on commit 1541765

Please sign in to comment.