Method: Sequel::Postgres::AutoParameterize::DatasetMethods#no_auto_parameterize
- Defined in:
- lib/sequel/extensions/pg_auto_parameterize.rb
#no_auto_parameterize ⇒ Object
Return a clone of the dataset that will not do automatic parameterization.
249 250 251 252 253 |
# File 'lib/sequel/extensions/pg_auto_parameterize.rb', line 249 def no_auto_parameterize cached_dataset(:_no_auto_parameterize_ds) do @opts[:no_auto_parameterize] ? self : clone(:no_auto_parameterize=>true) end end |