module ActiveRecordShards::DefaultReplicaPatches::AssociationsAssociationGetRecordsPatch
Public Instance Methods
get_records()
click to toggle source
Calls superclass method
# File lib/active_record_shards/default_replica_patches.rb, line 214 def get_records # rubocop:disable Naming/AccessorMethodName if klass on_replica_unless_tx { super } else super end end
on_replica_unless_tx() { || ... }
click to toggle source
# File lib/active_record_shards/default_replica_patches.rb, line 222 def on_replica_unless_tx klass.on_replica_unless_tx { yield } end