Mani Malek
Mani Malek
I need to load data from background: ``` let dictionary = Locksmith.loadDataForUserAccount("myUserAccount") ``` but I get the InteractionNotAllowed error. I figured out that I need to some how set the...
I can't create a hash index using: ```ruby add_index( :users, :username, using: "hash", algorithm: :concurrently, if_not_exists: true ) ``` Which prints this error: ``` ActiveRecord::StatementInvalid: PG::FeatureNotSupported: ERROR: at or near...
There seems to be a fundamental difference between PostgreSQL implementation of `pg_constraint` vs CockroachDB's implementation. When ActiveRecord queries this table [here](https://github.com/rails/rails/blob/6f57590388ca38ed2b83bc1207a8be13a9ba2aef/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb#L654-L662), Postgres returns an empty array while CockroachDB returns list...
When using regional by row tables, `crdb_region` shows up in the schema file and it also has the development database name in the primary region definition. For example: ```ruby t.enum...