postgres_ext
postgres_ext copied to clipboard
Adds support for missing PostgreSQL data types to ActiveRecord
Results
3
postgres_ext issues
Sort by
recently updated
recently updated
newest added
Suggest ActiveRecordExtended gem as an alternative to projects running Rails > 5 as there is no plan to update this gem to be compatible with Rails > 5.
This pull request fixes what I think to be a bug in the handling of recursive CTEs during merges. Queries like the following: Tag.all.merge(Tag.with.recursive(recursive: Tag.where(tag: 'tag'))) Tag.with.recursive(recursive: Tag.where(tag: 'tag')).merge(Tag.all) would...