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
Currently, the SerialSequencingQueue and SequencingQueue classes are not part of the public API and are not exported. This limits the ability of users to extend the functionality of Apache Arrow by creating custom nodes that rely on this classes.
Component(s)
C++
The text was updated successfully, but these errors were encountered:
…#45221)
### Rationale for this change
SequencingQueue and SerialSequencingQueue are useful in creating custom ExecNodes. This patch allows linking to factory functions.
### What changes are included in this PR?
ARROW_ACERO_EXPORT classes
### Are there any user-facing changes?
Users can now directly instantiate and use the SequencingQueue and SerialSequencingQueue classes, enabling easier creation of custom ExecNode.
* GitHub Issue: #45215
Authored-by: kamilt <[email protected]>
Signed-off-by: Rossi Sun <[email protected]>
Describe the enhancement requested
Currently, the
SerialSequencingQueue
andSequencingQueue
classes are not part of the public API and are not exported. This limits the ability of users to extend the functionality of Apache Arrow by creating custom nodes that rely on this classes.Component(s)
C++
The text was updated successfully, but these errors were encountered: