Sha256: 067a75a4d866a4882b76722bf233b9b64e81dcb7102b3aa14a88ef9deaa2f8f9
Contents?: true
Size: 532 Bytes
Versions: 12
Compression:
Stored size: 532 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes # Postgres: https://www.postgresql.org/docs/9.1/functions-comparisons.html class Any < Arel::Nodes::Unary end end module Visitors class ToSql def visit_Arel_Nodes_Any(o, collector) collector << 'ANY(' visit o.expr, collector collector << ')' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
12 entries across 12 versions & 1 rubygems