kou opened a new pull request, #35024:
URL: https://github.com/apache/arrow/pull/35024
### Rationale for this change
If we use system gdb, we can't import build-in libraries such as math:
(gdb) source /arrow/cpp/gdb_arrow.py
Traceback (most recent call last):
File "/arrow/cpp/gdb_arrow.py", line 20, in <module>
import datetime
File "/usr/lib/python3.10/datetime.py", line 12, in <module>
import math as _math
ModuleNotFoundError: No module named 'math'
Because system gdb is built with system Python not conda's Python.
### What changes are included in this PR?
Use conda's gdb instead of system gdb.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
--
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]