Sha256: 29f7b7cf17dabf750dcd2445785470988434028d654dab043046fe8591e114ad

Contents?: true

Size: 211 Bytes

Versions: 6

Compression:

Stored size: 211 Bytes

Contents

require 'arel/visitors/to_sql'
module Arel
  module Visitors
    class ToSql
      private
      def visit_Arel_Nodes_ContainedWithin o
        "#{visit o.left} << #{visit o.right}"
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
postgres_ext-0.0.6 lib/postgres_ext/arel/visitors/to_sql.rb
postgres_ext-0.0.5 lib/postgres_ext/arel/visitors/to_sql.rb
postgres_ext-0.0.4 lib/postgres_ext/arel/visitors/to_sql.rb
postgres_ext-0.0.3 lib/postgres_ext/arel/visitors/to_sql.rb
postgres_ext-0.0.2 lib/postgres_ext/arel/visitors/to_sql.rb
postgres_ext-0.0.1 lib/postgres_ext/arel/visitors/to_sql.rb