1. 22 8月, 2017 4 次提交
  2. 21 8月, 2017 3 次提交
  3. 20 8月, 2017 3 次提交
  4. 18 8月, 2017 2 次提交
  5. 17 8月, 2017 1 次提交
  6. 15 8月, 2017 3 次提交
  7. 14 8月, 2017 1 次提交
  8. 13 8月, 2017 6 次提交
  9. 12 8月, 2017 5 次提交
  10. 11 8月, 2017 3 次提交
  11. 09 8月, 2017 4 次提交
  12. 08 8月, 2017 3 次提交
  13. 07 8月, 2017 1 次提交
    • Y
      Add missed `require` · 3374da7b
      yui-knk 提交于
      `ActiveRecord::ConnectionAdapters::QueryCache::ConnectionPoolConfiguration`
      depends on `Concurrent::Map`.
      3374da7b
  14. 05 8月, 2017 1 次提交
    • Y
      Allow `table_name_prefix` and `table_name_suffix` have `$` · b49c6dce
      Yasuo Honda 提交于
      MySQL 5.7 and PostgreSQL 9.6 allow table identifiers have the dollar sign.
      
      * MySQL 5.7
      https://dev.mysql.com/doc/refman/5.7/en/identifiers.html
      
      > Permitted characters in unquoted identifiers:
      >  ASCII: [0-9,a-z,A-Z$_] (basic Latin letters, digits 0-9, dollar, underscore)
      
      * PostgreSQL 9.6
      https://www.postgresql.org/docs/9.6/static/sql-syntax-lexical.html
      
      > SQL identifiers and key words must begin with a letter (a-z, but also letters with diacritical marks and non-Latin letters) or an underscore (_). Subsequent characters in an identifier or key word can be letters, underscores, digits (0-9), or dollar signs ($). Note that dollar signs are not allowed in identifiers according to the letter of the SQL standard, so their use might render applications less portable. The SQL standard will not define a key word that contains digits or starts or ends with an underscore, so identifiers of this form are safe against possible conflict with future extensions of the standard.
      
      Address #30044
      
      [Yasuo Honda & Ryuta Kamizono]
      b49c6dce