1. 15 Apr, 2015 1 commit
  2. 10 Feb, 2015 4 commits
  3. 24 Jan, 2015 1 commit
  4. 12 Jan, 2015 1 commit
  5. 01 Jan, 2015 1 commit
  6. 26 Dec, 2014 1 commit
  7. 05 Dec, 2014 1 commit
  8. 20 Aug, 2014 1 commit
  9. 29 Jul, 2014 1 commit
  10. 22 Jul, 2014 1 commit
  11. 08 Feb, 2014 1 commit
  12. 05 Jan, 2014 1 commit
    • José Gabriel González Pérez's avatar
      Fix statement for getTableWhereClause method · 02a1db65
      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.
      02a1db65
  13. 03 Jan, 2014 1 commit
  14. 31 Dec, 2013 4 commits
  15. 29 Dec, 2013 1 commit
  16. 22 Dec, 2013 1 commit
  17. 21 Dec, 2013 1 commit
  18. 20 Dec, 2013 4 commits
  19. 18 Dec, 2013 2 commits
  20. 08 Sep, 2013 1 commit
  21. 24 Jun, 2013 1 commit
  22. 21 Jun, 2013 1 commit
    • Benjamin Morel's avatar
      Fixed documentation. · f0eaaf6f
      Benjamin Morel authored
      - Fixed docblocks
      - Removed return statements on void methods
      - Cleaned up unused private / local variables
      - Fixed license issues
      - Removed SVN leftovers
      - Fixed doctrine-project.org links
      - Added line breaks before return statements
      f0eaaf6f
  23. 18 Jun, 2013 1 commit
  24. 13 Jun, 2013 2 commits
  25. 07 Jun, 2013 1 commit
  26. 05 Jun, 2013 1 commit
  27. 26 May, 2013 1 commit
  28. 15 May, 2013 1 commit
  29. 01 May, 2013 1 commit