Sha256: a360f02b8f32b06c7f3195c124621c5a9230d827f5d2f6b572119ed9813ae65d
Contents?: true
Size: 431 Bytes
Versions: 10
Compression:
Stored size: 431 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class Into < Arel::Nodes::Unary end end module Visitors class ToSql def visit_Arel_Nodes_Into(o, collector) collector << 'INTO ' visit o.expr, collector end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
10 entries across 10 versions & 1 rubygems