Method: Sequel::Plugins::UpdateRefresh::InstanceMethods#after_update
- Defined in:
- lib/sequel/plugins/update_refresh.rb
#after_update ⇒ Object
If the dataset does not support UPDATE RETURNING, then refresh after an update.
60 61 62 63 64 65 |
# File 'lib/sequel/plugins/update_refresh.rb', line 60 def after_update super unless this.supports_returning?(:update) refresh end end |