Sha256: cb32bd4a030b51dddd6cdb69971b90504672aa40a402e6f73887638ad2289a09
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 NaturalJoin < Arel::Nodes::Join end end module Visitors class ToSql def visit_Arel_Nodes_NaturalJoin(o, collector) collector << 'NATURAL JOIN ' visit o.left, collector end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
12 entries across 12 versions & 1 rubygems