1. 15 Dec, 2015 5 commits
  2. 05 Sep, 2015 1 commit
  3. 21 Aug, 2015 1 commit
  4. 15 Apr, 2015 1 commit
  5. 10 Feb, 2015 4 commits
  6. 28 Jan, 2015 1 commit
  7. 24 Jan, 2015 1 commit
  8. 12 Jan, 2015 2 commits
  9. 03 Jan, 2015 1 commit
    • Adrien Crivelli's avatar
      Do not TRIM() parentheses around partial index's conditions · f1f7c9a6
      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))"}``
      f1f7c9a6
  10. 01 Jan, 2015 1 commit
  11. 28 Dec, 2014 1 commit
  12. 26 Dec, 2014 2 commits
  13. 24 Dec, 2014 1 commit
  14. 12 Dec, 2014 6 commits
  15. 25 Nov, 2014 1 commit
  16. 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
  17. 05 Nov, 2014 10 commits