Module Sequel::Plugins::UpdateRefresh::InstanceMethods
In: lib/sequel/plugins/update_refresh.rb

Methods

Public Instance methods

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

[Source]

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

[Validate]