spilchen
spilchen
Here is the failing test: https://github.com/rails/rails/blob/v8.0.1/activerecord/test/cases/adapters/postgresql/type_lookup_test.rb#L18-L25 ``` test "array types correctly respect registration of subtypes" do int_array = @connection.send(:type_map).lookup(1007, -1, "integer[]") bigint_array = @connection.send(:type_map).lookup(1016, -1, "bigint[]") big_array = [123456789123456789] assert_raises(ActiveModel::RangeError)...
For the first instance, the failure is: ``` Error: ***UNEXPECTED ERROR; Failed to generate a random operation: failed generating operation: validate: Validation FAIL: id 184, db schemachange, schema schema_w2_218, name...
Is this related to backup/restore at all? Something to look into. Are these objects created before/after the backup?
Note: we thought we fixed this in #158480 , but it's running with that fix.
Clarification, the fix for #158480 (#158762) wasn't merged in time for the first instance. So, we can attribute that as being fixed. We should focus on the second occurrence only....
Hitting this error while importing the history table: ``` Error: importing fixture: importing table history: pq: checking if existing table is empty: replica unavailable: (n7,s7):4 unable to serve request to...
It could be overload. The system is currently n2-standard8, which seems like a large enough cluster already. Could we use different gateways when we import? Or reduce the concurrency during...
I noticed the backport to 26.1 was opened then closed (maybe because of a CLA issue??). Were we planning on back porting this eventually? I have a PR that I'd...