-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sql: support ActiveRecord through postgresql adapter #12792
Comments
After #13429 and a workaround for #13468, we manage to successfully make it past all of ActiveRecord's type management and schema creation routines - |
In addition, in order to support Rails 5.0+ without supporting correlated subqueries, we'll need to wait until rails/rails#27743 is released in Rails 5.0.2. |
Once rails/rails#27949 makes it into a release, we won't need common table expressions at all. |
Rails uses savepoints during transactions. Looks like we'll need to support them. Added #10735 to the list. |
We changed strategies and now provide an adapter for CockroachDB support in ActiveRecord. See https://github.com/cockroachdb/activerecord-cockroachdb-adapter and the docs. |
These are the features needed to support ActiveRecord using its
postgresql
database adapter:unnest
built-incol_description
built-informat_type
built-incurrent_schema{,s}()
builtins should return public, not database namearray_in
built-inpg_catalog.pg_collation
try_advisory_lock()
(Rails 5)current_database()
(Rails 5)regfoo
typesSAVEPOINT
The text was updated successfully, but these errors were encountered: