- 10 Nov, 2013 1 commit
-
-
Steve Müller authored
-
- 09 Nov, 2013 1 commit
-
-
Steve Müller authored
-
- 08 Nov, 2013 1 commit
-
-
Benjamin Eberlei authored
Enhancement: add support for $driverOptions
-
- 04 Nov, 2013 2 commits
-
-
Marco Pivetta authored
Use correct classname in exception message
-
flack authored
-
- 03 Nov, 2013 2 commits
-
-
Steve Müller authored
Fix a Typo
-
Mohammad Shokri authored
-
- 02 Nov, 2013 7 commits
-
-
Steve Müller authored
Update tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManag...
-
Benjamin Eberlei authored
Use platform specific datetime format for assertions in WriteTest
-
Steve Müller authored
DBAL-645: Oracle Platform: Cannot list table columns from a different schema
-
Steve Müller authored
-
Simon Edwards authored
Using user_col_comments in the INNER JOIN when referencing all_tab_columns causes no results to be returned.
-
Benjamin Eberlei authored
Skip MasterSlaveConnectionTest for vendors other than MySQL
-
Steve Müller authored
-
- 28 Oct, 2013 9 commits
-
-
till authored
-
till authored
-
till authored
* test case to assert the connection timeout is set * test case to assert on exceptions thrown * wip, as it seems impossible to trigger 'false' from mysqli_options
-
till authored
* push error handling down to when it occurs * WIP, as I am unable to trigger false currently
-
till authored
-
till authored
* move supportedDriverOptions into setDriverOptions * make setDriverOptions private * support \MYSQLI_SERVER_PUBLIC_KEY on 5.5.0+
-
till authored
-
till authored
* fix typo * remove fluent interface
-
till authored
* introduced $_supportedDriverOptions to validate what is passed into the object * added `setDrivrOptions()` which sets the array and throws exceptions
-
- 23 Oct, 2013 2 commits
-
-
Guilherme Blanco authored
Remove unused Table::$_idGeneratorType
-
Guilherme Blanco authored
Fix reserved keyword conflicts in TemporaryTableTest
-
- 22 Oct, 2013 2 commits
-
-
Steve Müller authored
-
Eugene Leonovich authored
-
- 09 Oct, 2013 2 commits
-
-
Guilherme Blanco authored
Fix Index construction
-
Steve Müller authored
-
- 07 Oct, 2013 3 commits
-
-
Guilherme Blanco authored
Update CreateSchemaSqlCollector.php setting default namespace/schema nam...
-
flip111 authored
supportsSchemas() was already added (see last commit). So changed expectation from 1 to any.
-
flip111 authored
Added the supportsSchemas method in the mock because it's being used now.
-
- 04 Oct, 2013 1 commit
-
-
flip111 authored
The current implementation uses the schema name as namespace name. Some platforms don't support schema's, but a namespace name still needs to be present. Added namespace name 'default' when there is no default schema name.
-
- 02 Oct, 2013 1 commit
-
-
Benjamin Eberlei authored
-
- 01 Oct, 2013 6 commits
-
-
Marco Pivetta authored
specified stable 2.4.* releases of doctrine/common in composer.json
-
Douglas Greenshields authored
-
Guilherme Blanco authored
SQL Server Paginator bug fix
-
flip111 authored
-
flip111 authored
Apperently the doModifyLimitQuery function does not only cover SQL generated by ORM (Makes sense to use DBAL as seperate component). Therefor it can happen that a column name does not include the table and so the old logic was valid anyway. (line 867-869) Fixed the unit tests to use real column names instead of aliases.
-
flip111 authored
1. combine the regexes into one. The only thing that needs to be captured is the alias. Used a non-capturing group for "AS " to avoid confusion and have cleaner regex. It tries to match "Table.Column Alias" or "Table.Column AS Alias". (line 861) 2. No fallback on line 865 like "$column['table'] . '.' . $column['column']" this wouldn't make sense as this can not be possible when it's a wrapped query. Better not insert some random SQL that's gonna confuse the hell out of everybody. 3. Removed "($column['hasTable'] ? $column['table'] . '.' : '') . $column['column']" because the original regex always tries to match the table name. Therefor hasTable will always be true or the entire function fails anyway. (this references line 868 now) (this was unit tested on mysql, postgresql and sql server and did not increase errors/failures)
-