aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/matches.rb
blob: 0d9c1925dc9c7e63eb52e1de311ee3154558e495 (plain) (tree)
1
2
3
4
5
6
7
8
9



                          
                                   
 
                                                                       

                                                      
                                        





                                     
module Arel
  module Nodes
    class Matches < Binary
      attr_reader :escape
      attr_accessor :case_sensitive

      def initialize(left, right, escape = nil, case_sensitive = false)
        super(left, right)
        @escape = escape && Nodes.build_quoted(escape)
        @case_sensitive = case_sensitive
      end
    end

    class DoesNotMatch < Matches; end
  end
end