1. 30 Apr, 2015 2 commits
  2. 29 Apr, 2015 1 commit
  3. 09 Apr, 2015 1 commit
  4. 02 Apr, 2015 5 commits
  5. 31 Mar, 2015 2 commits
  6. 27 Mar, 2015 1 commit
  7. 26 Mar, 2015 1 commit
  8. 11 Mar, 2015 5 commits
  9. 04 Mar, 2015 1 commit
  10. 10 Feb, 2015 1 commit
  11. 31 Jan, 2015 1 commit
  12. 30 Jan, 2015 2 commits
  13. 29 Jan, 2015 4 commits
  14. 27 Jan, 2015 2 commits
  15. 26 Jan, 2015 1 commit
  16. 23 Jan, 2015 1 commit
  17. 18 Jan, 2015 1 commit
  18. 13 Jan, 2015 1 commit
  19. 11 Jan, 2015 1 commit
  20. 08 Jan, 2015 1 commit
  21. 04 Jan, 2015 3 commits
  22. 03 Jan, 2015 2 commits
    • 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
    • Steve Müller's avatar
      08f4b2be