We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6c3410 commit 09c2d34Copy full SHA for 09c2d34
1 file changed
datafusion/physical-expr/src/expressions/dynamic_filters.rs
@@ -382,12 +382,18 @@ impl DynamicFilterPhysicalExpr {
382
}
383
384
/// Return the filter's original children (before any remapping).
385
+ ///
386
+ /// **Warning:** intended only for `datafusion-proto` (de)serialization.
387
+ /// Not a stable API.
388
pub fn original_children(&self) -> &[Arc<dyn PhysicalExpr>] {
389
&self.children
390
391
392
/// Return the filter's remapped children, if any have been set via
393
/// [`PhysicalExpr::with_new_children`].
394
395
396
397
pub fn remapped_children(&self) -> Option<&[Arc<dyn PhysicalExpr>]> {
398
self.remapped_children.as_deref()
399
0 commit comments