raulcd opened a new issue, #36449: URL: https://github.com/apache/arrow/issues/36449
### Describe the bug, including details regarding any error messages, version, and platform. [test-cuda-python](https://github.com/ursacomputing/crossbow/actions/runs/5449601863/jobs/9913998035) fails on `test_gdb` for several tests. All errors seem to not be able to match the type, like: ``` def check_stack_repr(gdb, expr, expected): """ Check printing a stack-located value. """ s = gdb.print_value(expr) if isinstance(expected, re.Pattern): assert expected.match(s), s else: > assert s == expected E AssertionError: assert '<incomplete type>' == 'arrow::null()' E - arrow::null() E + <incomplete type> ``` ### Component(s) Continuous Integration, Python -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
