Method: Window#to_sql

Defined in:
lib/eno/expressions.rb

#to_sql(sql) ⇒ Object



541
542
543
544
545
546
# File 'lib/eno/expressions.rb', line 541

def to_sql(sql)
  S_WINDOW % [
    sql.quote(@members.first),
    WindowExpression.new(&@block).to_sql(sql)
  ]
end