Method: SQL::Maker::Select#limit
- Defined in:
- lib/sql/maker/select.rb
#limit(limit = nil) ⇒ Object
63 64 65 66 67 68 69 70 |
# File 'lib/sql/maker/select.rb', line 63 def limit(limit = nil) if limit @limit = limit self # method chain else @limit end end |