1. 14 9月, 2018 1 次提交
  2. 12 9月, 2018 1 次提交
  3. 25 6月, 2018 1 次提交
  4. 09 6月, 2018 1 次提交
  5. 01 6月, 2018 1 次提交
    • Y
      CI against MariaDB 10.3 · 4d652936
      Yasuo Honda 提交于
      - MariaDB 10.3.7 is the first GA release
      https://mariadb.com/kb/en/library/mariadb-1037-release-notes/
      
      - MariaDB 10.3 translates `LENGTH()` to `OCTET_LENGTH()` function
      
      https://mariadb.com/kb/en/library/sql_modeoracle-from-mariadb-103/
      > MariaDB translates LENGTH() to OCTET_LENGTH()
      
      - MySQL does NOT translate `LENGTH()` to `OCTET_LENGTH()`
      However, it translates `OCTET_LENGTH()` to `LENGTH()`
      
      Here are generated schema dumps of this test to show the differences
      between MySQL and MariaDB:
      
      * MySQL 8.0 (Server version: 8.0.11 MySQL Community Server - GPL)
      ```ruby
        create_table \"virtual_columns\", options: \"ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci\", force: :cascade do |t|
          t.string \"name\"
          t.virtual \"upper_name\", type: :string, as: \"upper(`name`)\"
          t.virtual \"name_length\", type: :integer, as: \"length(`name`)\", stored: true
          t.virtual \"name_octet_length\", type: :integer, as: \"length(`name`)\", stored: true
        end
      ```
      
      * Maria DB 10.3 (Server version: 10.3.7-MariaDB-1:10.3.7+maria~bionic-log mariadb.org binary distribution)
      
      ```ruby
        create_table \"virtual_columns\", options: \"ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci\", force: :cascade do |t|
          t.string \"name\"
          t.virtual \"upper_name\", type: :string, as: \"ucase(`name`)\"
          t.virtual \"name_length\", type: :integer, as: \"octet_length(`name`)\", stored: true
          t.virtual \"name_octet_length\", type: :integer, as: \"octet_length(`name`)\", stored: true
        end
      ```
      4d652936
  6. 31 3月, 2018 1 次提交
  7. 13 3月, 2018 3 次提交
  8. 07 3月, 2018 1 次提交
  9. 21 2月, 2018 1 次提交
    • Y
      CI with `jruby-head` compatible with Ruby 2.4.1 · 00d29e18
      Yasuo Honda 提交于
      Since #32034 Rails 6 requires Ruby 2.4.1 or higher.
      Two CI jobs configured with the latest version of`jruby-9.1.15.0`
      compatibile with Ruby 2.3.3 are getting errors:
      
      https://travis-ci.org/rails/rails/jobs/343519339
      
      ```
      Bundler could not find compatible versions for gem "ruby":
        In Gemfile:
          ruby java
          rails java was resolved to 6.0.0.alpha, which depends on
            ruby (>= 2.4.1) java
      Could not find gem 'ruby (>= 2.4.1)', which is required by gem 'rails', in any
      of the relevant sources:
      ```
      00d29e18
  10. 18 2月, 2018 3 次提交
  11. 17 2月, 2018 1 次提交
  12. 02 2月, 2018 1 次提交
  13. 01 2月, 2018 1 次提交
  14. 07 1月, 2018 2 次提交
  15. 27 12月, 2017 1 次提交
  16. 25 12月, 2017 1 次提交
  17. 22 12月, 2017 2 次提交
  18. 12 12月, 2017 1 次提交
  19. 09 12月, 2017 1 次提交
  20. 06 12月, 2017 1 次提交
  21. 15 11月, 2017 1 次提交
  22. 13 11月, 2017 2 次提交
  23. 03 11月, 2017 1 次提交
  24. 02 11月, 2017 1 次提交
  25. 01 11月, 2017 2 次提交
  26. 20 10月, 2017 1 次提交
  27. 29 9月, 2017 1 次提交
  28. 15 9月, 2017 2 次提交
  29. 07 9月, 2017 1 次提交
  30. 02 9月, 2017 2 次提交