# File lib/arel/nodes/and.rb, line 6
      def initialize children, right = nil
        super()
        unless Array === children
          warn "(#{caller.first}) AND nodes should be created with a list"
          children = [children, right]
        end
        @children = children
      end