Sha256: 12a841931b7ed0cbec3b1d06cce6f120b0bf21dac685b43e22177597b298c985
Contents?: true
Size: 461 Bytes
Versions: 12
Compression:
Stored size: 461 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class IntersectAll < Binary end end module Visitors class ToSql def visit_Arel_Nodes_IntersectAll(o, collector) collector << '( ' infix_value(o, collector, ' INTERSECT ALL ') << ' )' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
12 entries across 12 versions & 1 rubygems