c2e7f36f87
68a95542e1
1 2 3 4 5
6 7
8 9 10 11 12
module Arel module Visitors class IBM_DB < Arel::Visitors::ToSql private def visit_Arel_Nodes_Limit o, a "FETCH FIRST #{visit o.expr, a} ROWS ONLY" end end end end