Rafi Shamim
Rafi Shamim
I don't have any solid ideas. I am surprised the test would be having overload though. It's not really doing anything intensive. Would it be worth checking with KV to...
Preserving the test artifacts for posterity, and moving to DR as they own this test. [2024_08_27T05_10_08_000Z_pkg_sql_logictest_tests_cockroach_go_testserver_24_1_cockroach_go_testserver_24_1_test_test.outputs__outputs.zip](https://github.com/user-attachments/files/16789062/2024_08_27T05_10_08_000Z_pkg_sql_logictest_tests_cockroach_go_testserver_24_1_cockroach_go_testserver_24_1_test_test.outputs__outputs.zip)
``` "message": "***UNEXPECTED ERROR; Received an unexpected execution error.: ERROR: type \"public.enum258\" does not exist (SQLSTATE 42704)", ``` this is fixed by https://github.com/cockroachdb/cockroach/pull/129135 which is not on this branch.
I'm an engineer from CockroachDB - this looks good to me!
fixed by https://github.com/cockroachdb/cockroach/pull/126453
``` { "workerId": 3, "clientTimestamp": "06:27:59.46668", "ops": [ "BEGIN", { "sql": "ALTER TABLE public.table365 ADD COLUMN \"col365_583\" PG_LSN NOT NULL" } ], "expectedExecErrors": "", "expectedCommitErrors": "", "message": "***UNEXPECTED ERROR; Received...
will be fixed by https://github.com/cockroachdb/cockroach/pull/128941
While working on this, can you also see if you can identify why https://github.com/cockroachdb/cockroach/issues/128420 is happening?
Let's fix the unique constraint issue by adding the error code (`23505`) to the potential errors field for the `create unique index / add unique constraint` operation. It should be...
``` # Add a column with a default transaction_timestamp() statement ok ALTER TABLE add_default ADD COLUMN d TIMESTAMP DEFAULT transaction_timestamp() query II rowsort SELECT a,b FROM add_default WHERE d >...