You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug, including details regarding any error messages, version, and platform.
In the destructor of the AsofJoinNode class, no check is performed to ensure that the process_thread_ is joinable before calling the join() method. This can lead to an std::system_error exception if the thread has not been initialized, which can happen if the creation of the plan fails.
Component(s)
C++
The text was updated successfully, but these errors were encountered:
mroz45
changed the title
Missing joinable check for thread in AsofJoinNode Destructor
[C++] Missing joinable check for thread in AsofJoinNode Destructor
Oct 24, 2024
Describe the bug, including details regarding any error messages, version, and platform.
In the destructor of the AsofJoinNode class, no check is performed to ensure that the process_thread_ is joinable before calling the join() method. This can lead to an std::system_error exception if the thread has not been initialized, which can happen if the creation of the plan fails.
Component(s)
C++
The text was updated successfully, but these errors were encountered: