Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: pass block argument in ActiveRecord
find_by_sql
patch
`find_by_sql` takes a block as its final argument, which is neither a positional nor a keyword argument, hence we need to pass it explicitly; before this commit, the block was not passed to the `super()` call and hence not executed, thus altering application behavior. Fixes #1258
- Loading branch information