1. 02 Dec, 2018 1 commit
  2. 30 Nov, 2018 1 commit
  3. 24 Nov, 2018 1 commit
  4. 16 Nov, 2018 1 commit
  5. 08 Nov, 2018 1 commit
  6. 28 Sep, 2018 2 commits
  7. 12 May, 2018 1 commit
    • Sergei Morozov's avatar
      DB2 on Travis · e2e0de25
      Sergei Morozov authored
      1. Use the actual dsdriver distribution
      2. Introduced `AbstractPlatform::getCharMaxLength()` since `CHAR` and `VARCHAR` limitations are different on DB2.
      e2e0de25
  8. 11 May, 2018 2 commits
    • Timo Bakx's avatar
      Updated sqlite unit tests · 245bfb79
      Timo Bakx authored
      245bfb79
    • Robin Appelman's avatar
      allow creating PRIMARY KEY AUTOINCREMENT fields for sqlite · 51358603
      Robin Appelman authored
      If a PRIMARY KEY field is defined in sqlite without autoincrement then
      keys might be reused when rows are deleted, explicitly settings autoincrement
      will prevent this.
      
      Autoincrement is not enabled by default due to additional overhead introduced
      with autoincrement bookkeeping and should only be enabled when the additional
      uniqueness is required.
      51358603
  9. 01 May, 2018 1 commit
  10. 30 Apr, 2018 1 commit
  11. 01 Apr, 2018 1 commit
  12. 29 Mar, 2018 1 commit
  13. 29 Jan, 2018 1 commit
  14. 04 Jan, 2018 2 commits
  15. 03 Jan, 2018 1 commit
  16. 02 Jan, 2018 1 commit
  17. 01 Jan, 2018 8 commits
  18. 26 Dec, 2017 1 commit
  19. 06 Dec, 2017 2 commits
    • Grégoire Paris's avatar
      Trigger a deprecation on unknown option · 0241134e
      Grégoire Paris authored
      I am not sure if there is a rationale behind ignoring extra keys like
      this. I was under the impression that something might copy options to
      platform specific options, thus leaving options in the original array,
      knowing they would be ignored anyway. If it is the case, it would be
      best to just move them, otherwise, this commit might help troubleshoot
      some mapping issues.
      I had to fix some tests that wrongly used that options array (maybe
      these options were valid at some point?).
      0241134e
    • Gabriel Caruso's avatar
      Refactoring tests · cfc51dc3
      Gabriel Caruso authored
      cfc51dc3
  20. 28 Nov, 2017 1 commit
  21. 20 Nov, 2017 1 commit
    • Robin Appelman's avatar
      Fix changing column from int to bigint with autoincrement · 754880b6
      Robin Appelman authored
      - SERIAL and BIGSERIAL are not true types and can't be used in ALTER TABLE expressions
      - When changing between int and bigint auto increment fields the default should no be dropped
        to preserve the link between the column and the sequence.
      754880b6
  22. 19 Nov, 2017 8 commits