diff options
author | Matthew Draper <matthew@trebex.net> | 2017-12-06 23:22:28 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-06 23:22:28 +1030 |
commit | aa11ad9129b65e637c05cc4b26a2cbbff6f143c2 (patch) | |
tree | 95e60e1280aec63222856ef4e494947eb0913092 /lib/arel/nodes/case.rb | |
parent | 5f25b0aa7fafc1a91605117f8bce700466e0d663 (diff) | |
parent | ff53df96875de84ee02895772b59448f35a5a0c2 (diff) | |
download | rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.tar.gz rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.tar.bz2 rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.zip |
Merge pull request #449 from kbrock/expr_node
Introduce Expression Node
Diffstat (limited to 'lib/arel/nodes/case.rb')
-rw-r--r-- | lib/arel/nodes/case.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/arel/nodes/case.rb b/lib/arel/nodes/case.rb index 1edca40001..50ea1e0be2 100644 --- a/lib/arel/nodes/case.rb +++ b/lib/arel/nodes/case.rb @@ -2,10 +2,6 @@ module Arel module Nodes class Case < Arel::Nodes::Node - include Arel::OrderPredications - include Arel::Predications - include Arel::AliasPredication - attr_accessor :case, :conditions, :default def initialize expression = nil, default = nil |