1. 19 Jul, 2017 1 commit
  2. 09 Mar, 2017 1 commit
  3. 15 Jul, 2016 1 commit
  4. 06 Jan, 2016 1 commit
  5. 01 May, 2015 1 commit
  6. 25 Apr, 2015 1 commit
  7. 11 Mar, 2015 1 commit
  8. 31 Jan, 2015 1 commit
  9. 03 Jan, 2015 1 commit
    • Adrien Crivelli's avatar
      Do not TRIM() parentheses around partial index's conditions · e5e3dbc9
      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))"}``
      e5e3dbc9
  10. 21 Dec, 2014 1 commit
  11. 16 Dec, 2014 1 commit
  12. 10 Nov, 2014 1 commit
    • Jan Sorgalla's avatar
      Exclude tables with table_type of VIEW · de52ae53
      Jan Sorgalla authored
      This excludes views registered by PostGIS 2.x like geography_columns, geometry_columns, raster_columns and raster_overviews.
      The table_name != 'geometry_columns' is kept for PostGIS 1.5 compatibility. The type changed to VIEW in PostGIS 2.0.
      de52ae53
  13. 23 Oct, 2014 6 commits
    • Steve Müller's avatar
      3970bad4
    • x42p's avatar
      Update PostgreSqlPlatform.php · 3bec63d8
      x42p authored
      some format changes to trigger travis-cl once more again
      3bec63d8
    • x42p's avatar
      Update PostgreSqlPlatform.php · 3a56b4a6
      x42p authored
      I take the guess an use the information_schema. It makes it more clear and simple
      3a56b4a6
    • x42p's avatar
      Update PostgreSqlPlatform.php · b611d32a
      x42p authored
      correct table identifier
      b611d32a
    • x42p's avatar
      Update PostgreSqlPlatform.php · 157d7ac6
      x42p authored
      missing table identifier added
      157d7ac6
    • x42p's avatar
      Update PostgreSqlPlatform.php · 21465bf7
      x42p authored
      If the database have different schemes, with objects, that the actual logged in user has no rights, the existing statements will collect all objects (sequences and tables) and try to read them in later steps. This will throws exceptions. The reason for that is the fact, that both procedures getListSequencesList() and getListTablesSQL() will receive all known database objects from postgres catalogs. But the actual logged-in user, maby has no read permissions to object inside other scheme-owner. The additional parts inside both sql-statements will reduce the result to only objects that the user are able to see.
      21465bf7
  14. 21 Oct, 2014 1 commit
  15. 20 Oct, 2014 1 commit
  16. 17 Oct, 2014 1 commit
  17. 21 Aug, 2014 1 commit
  18. 18 Aug, 2014 2 commits
  19. 29 Jul, 2014 2 commits
  20. 24 Jul, 2014 2 commits
  21. 22 Jul, 2014 3 commits
  22. 18 Jul, 2014 2 commits
  23. 01 Jul, 2014 1 commit
  24. 30 Jun, 2014 6 commits