- 08 Feb, 2014 8 commits
-
-
Benjamin Eberlei authored
Refactor, consolidate and extend driver exception conversion
-
Benjamin Eberlei authored
[DBAL-764] Document types / column usage properly
-
Benjamin Eberlei authored
Add SMALLSERIAL type support on PostgreSQL 9.2 platform
-
Benjamin Eberlei authored
[DBAL-752] Fix integer type declaration SQL on SQLite
-
Benjamin Eberlei authored
Fix unique indexes in CREATE TABLE statements on SQL Anywhere
-
Benjamin Eberlei authored
Fix table lock hints on SQL Anywhere
-
Benjamin Eberlei authored
Fix modifying limit/offset for statements with subqueries on SQL Server
-
Benjamin Eberlei authored
[DBAL-789] Fix default values for TEXT/BLOB column type on MySQL
-
- 16 Jan, 2014 1 commit
-
-
Steve Müller authored
-
- 15 Jan, 2014 1 commit
-
-
Guilherme Blanco authored
Create the online table before listing it.
-
- 14 Jan, 2014 7 commits
-
-
Benjamin Eberlei authored
[DDC-2310] Fix evaluation of NOLOCK table hint on SQL Server
-
Steve Müller authored
-
Mike McMahon authored
-
Benjamin Eberlei authored
Exclude HHVM + PostgreSQL build matrix on Travis for now
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
-
- 13 Jan, 2014 1 commit
-
-
Steve Müller authored
-
- 10 Jan, 2014 3 commits
-
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
-
- 08 Jan, 2014 7 commits
-
-
Benjamin Eberlei authored
Fix DataAccess test on HHVM
-
Benjamin Eberlei authored
Add travis build matrix for all built-in PostgreSQL versions
-
Benjamin Eberlei authored
Exclude HHVM + PostgreSQL and HHVM + Mysqli from travis build matrix
-
Steve Müller authored
-
Guilherme Blanco authored
Add dependency badge to the README
-
reiz authored
-
reiz authored
-
- 06 Jan, 2014 2 commits
-
-
Steve Müller authored
-
reiz authored
-
- 05 Jan, 2014 9 commits
-
-
Guilherme Blanco authored
Add missing type parameters to connection fetch methods
-
Steve Müller authored
-
Steve Müller authored
-
Benjamin Eberlei authored
Fix SQL Server drivers and functional test suites
-
Benjamin Eberlei authored
Fix statement for getTableWhereClause method
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
-
Steve Müller authored
-
- 04 Jan, 2014 1 commit
-
-
José Gabriel González Pérez authored
If you have a role "postgres" in PostgreSQL that is described like this: ``` -- Role: postgres CREATE ROLE postgres LOGIN ENCRYPTED PASSWORD 'md53175bce1d3201d16594cebf9d7eb3f9d' SUPERUSER INHERIT CREATEDB CREATEROLE REPLICATION; ALTER ROLE postgres IN DATABASE sf_test SET search_path = "$user", public, access, geographic, rrhh; ``` At the time when I execute the statement (Part of $schema value in the line 348): ``` SELECT string_to_array((select replace(replace(setting,"$user",user),' ','') from pg_catalog.pg_settings where name = 'search_path'),',') ``` I fetch this result: ``` {public," access"," geographic"," rrhh"} ``` Look the space character that is on the start of each string.This error does not match any namespace to which the role has access. This is critical when you have PostgreSQL database and you work with schemas.
-