1. 12 5月, 2020 1 次提交
  2. 01 1月, 2020 1 次提交
    • K
      Allow #nulls_first and #nulls_last in PostgreSQL · 66b19b5d
      Kevin Deisz 提交于
      When using PostgreSQL, it's useful to be able to specify NULLS FIRST and NULLS LAST on ordered columns. With this commit you can do that now, as in:
      
      ```ruby
      User.arel_table[:first_name].desc.nulls_last
      ```
      66b19b5d
  3. 13 6月, 2019 1 次提交
  4. 19 3月, 2019 2 次提交
    • J
      Remove roflscaling constants · 6fe624f5
      Jeremy Evans 提交于
      6fe624f5
    • J
      Remove roflscaling · 22d82b66
      Jeremy Evans 提交于
      roflscaling (using frozen string constants instead of literal
      strings) was added in 2012, before frozen string literals were
      added in Ruby 2.3.  Now that Rails no longer supports Ruby <2.3,
      and all of these files use frozen string literals, there is
      no reason to keep the roflscaling.
      
      This does not delete or deprecate the related constants. Such
      a change can be made in a later commit.
      22d82b66
  5. 16 11月, 2018 1 次提交
    • D
      Arel: Implemented DB-aware NULL-safe comparison (#34451) · b5302d5a
      Dmytro Shteflyuk 提交于
      * Arel: Implemented DB-aware NULL-safe comparison
      
      * Fixed where clause inversion for NULL-safe comparison
      
      * Renaming "null_safe_eq" to "is_not_distinct_from", "null_safe_not_eq" to "is_distinct_from"
      
      [Dmytro Shteflyuk + Rafael Mendonça França]
      b5302d5a
  6. 28 5月, 2018 1 次提交
  7. 24 2月, 2018 2 次提交