- 03 May, 2015 1 commit
-
-
Ryan Weaver authored
This mocks connect(), sets the internal _conn to an object, then calls close, which should re-set _conn back to null. The getWrappedConnection() call gives us access to _conn, but does NOT trigger a re-connect, since we mocked connect() to do nothing. Ultimately, if _conn is unset, calling getWrappedConnection() will error. If _conn is not set to null, the test will fail. This tests all the cases.
-
- 20 Mar, 2015 1 commit
-
-
Ryan Weaver authored
-
- 23 Jan, 2015 1 commit
-
-
Ryan Weaver authored
-
- 18 Jan, 2015 7 commits
-
-
Marco Pivetta authored
[DBAL-1123] Initialize database schema only once per PHPUnit run
-
Steve Müller authored
-
Marco Pivetta authored
[DBAL-1122] Cleanup PHPUnit test suite bootstrap
-
Steve Müller authored
-
Steve Müller authored
-
Marco Pivetta authored
Close #777
-
Steve Müller authored
-
- 12 Jan, 2015 2 commits
-
-
Marco Pivetta authored
Close #736
-
Steve Müller authored
Quote the name of an index in the create table statement.
-
- 11 Jan, 2015 4 commits
-
-
Marco Pivetta authored
Fix unique index exception handling for an index on multiple columns in PHP 5.4
-
Rob Bayliss authored
-
Guilherme Blanco authored
Moved Doctrine\Tests namespace to composer autoload-dev.
-
Guilherme Blanco authored
-
- 09 Jan, 2015 1 commit
-
-
Marco Pivetta authored
Allow overriding implicit indexes
-
- 08 Jan, 2015 1 commit
-
-
Steve Müller authored
-
- 04 Jan, 2015 7 commits
-
-
Marco Pivetta authored
[DBAL-1106] Improve schema introspection performance on Oracle
-
Marco Pivetta authored
[DBAL-1104] Add support for object hydration in oci8 driver
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
Update MysqliStatement to support PDO::FETCH_OBJ Close #755
-
Steve Müller authored
-
Steve Müller authored
-
- 03 Jan, 2015 15 commits
-
-
Steve Müller authored
Do not TRIM() parentheses around partial indexes conditions Close #716
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
-
Adrien Crivelli authored
Because PostgreSQL will return the expression with a lot of parentheses we cannot TRIM() them easily. It is easier and more correct to adapt to what PostgreSQL returns. That means the declaration of partial indexes must be updated as follow: Before: ``options={"where": "other_id IS NULL"}`` After: ``options={"where": "(other_id IS NULL)"}`` And fore more complex conditions, that would be: ``options={"where": "(((id IS NOT NULL) AND (other_id IS NULL)) AND (name IS NULL))"}``
-
Steve Müller authored
Type json_array is not consistent with NULL values
-
Steve Müller authored
-
Steve Müller authored
[DBAL-1082] Fix SchemaTool does not generate SQL for MySQL unsigned float Close #749
-
Steve Müller authored
-
Steve Müller authored
-
Daniel Chesterton authored
-
Daniel Chesterton authored
-
Daniel Chesterton authored
-
Daniel Chesterton authored
-
Daniel Chesterton authored
-