Sha256: 1ea5f135cfb575d1c87a15fb0fd8bc49b1caff8485b2cd315a01a89456d7bcb9
Contents?: true
Size: 483 Bytes
Versions: 66
Compression:
Stored size: 483 Bytes
Contents
module Bmg module Sql module WithSpec include Expr def to_sql(buffer, dialect) each_child do |child,index| buffer << COMMA << SPACE unless index==0 child.to_sql(buffer, dialect) end buffer end def to_hash hash = {} each_child do |child| hash[child.table_name.value] = child.subquery end hash end end # module WithSpec end # module Sql end # module Bmg
Version data entries
66 entries across 66 versions & 1 rubygems