Sha256: 0c9f9cfc39c7203642691117facb8bf08c5c5c7ea476e623363acaf7399c31e4
Contents?: true
Size: 484 Bytes
Versions: 122
Compression:
Stored size: 484 Bytes
Contents
module Arel module Visitors ### # This class produces SQL for JOIN clauses but omits the "single-source" # part of the Join grammar: # # http://www.sqlite.org/syntaxdiagrams.html#join-source # # This visitor is used in SelectManager#join_sql and is for backwards # compatibility with Arel V1.0 module JoinSql private def visit_Arel_Nodes_SelectCore o o.source.right.map { |j| visit j }.join ' ' end end end end
Version data entries
122 entries across 104 versions & 14 rubygems