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