aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/predicates.rb
blob: f83101306ef2ca39c046ab6e9351bb2782cf8209 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module Arel
  class Predicate
  end

  class Binary < Predicate
    attributes :operand1, :operand2
    deriving :initialize

    def ==(other)
      self.class === other          and
      @operand1  ==  other.operand1 and
      @operand2  ==  other.operand2
    end

    def bind(relation)
      self.class.new(operand1.find_correlate_in(relation), operand2.find_correlate_in(relation))
    end
  end

  class Equality < Binary
    def ==(other)
      Equality === other and
        ((operand1 == other.operand1 and operand2 == other.operand2) or
         (operand1 == other.operand2 and operand2 == other.operand1))
    end
  end

  class GreaterThanOrEqualTo < Binary
  end

  class GreaterThan < Binary
  end

  class LessThanOrEqualTo < Binary
  end

  class LessThan < Binary
  end

  class Match < Binary
  end

  class In < Binary
  end
end