1. 15 1月, 2018 2 次提交
    • R
      `create_database` should not add default charset when `collation` is given · f1af27fd
      Ryuta Kamizono 提交于
      If `collation` is given without `charset`, it may generate invalid SQL.
      For example `create_database(:matt_aimonetti, collation: "utf8mb4_bin")`:
      
      ```
      > CREATE DATABASE `matt_aimonetti` DEFAULT CHARACTER SET `utf8` COLLATE `utf8mb4_bin`;
      ERROR 1253 (42000): COLLATION 'utf8mb4_bin' is not valid for CHARACTER SET 'utf8'
      ```
      
      In MySQL, charset is used to find the default collation. If `collation`
      is given explicitly, it is not necessary to give extra charset.
      f1af27fd
    • R
      Merge pull request #28313 from sandrew/master · 282668cc
      Ryuta Kamizono 提交于
      Allow unscoping of left_outer_joins
      282668cc
  2. 14 1月, 2018 4 次提交
  3. 13 1月, 2018 6 次提交
  4. 12 1月, 2018 7 次提交
  5. 11 1月, 2018 19 次提交
  6. 10 1月, 2018 2 次提交