module Sequel::Plugins::UpdateRefresh::InstanceMethods

Public Instance Methods

after_update() click to toggle source

If the dataset does not support UPDATE RETURNING, then refresh after an update.

Calls superclass method
   # File lib/sequel/plugins/update_refresh.rb
60 def after_update
61   super
62   unless this.supports_returning?(:update)
63     refresh
64   end
65 end