Sha256: 38c5fd5400f65ff4a933d8df1a9c77130144348dc8c8f5341537caa4e713c348
Contents?: true
Size: 521 Bytes
Versions: 12
Compression:
Stored size: 521 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes # Postgres: https://www.postgresql.org/docs/8.1/sql-select.html class All < Arel::Nodes::Unary end end module Visitors class ToSql def visit_Arel_Nodes_All(o, collector) collector << 'ALL(' 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