Skip to content

Commit 586648b

Browse files
mark children apis as unstable
1 parent 9b04283 commit 586648b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

datafusion/physical-expr/src/expressions/dynamic_filters.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,12 +382,18 @@ impl DynamicFilterPhysicalExpr {
382382
}
383383

384384
/// Return the filter's original children (before any remapping).
385+
///
386+
/// **Warning:** intended only for `datafusion-proto` (de)serialization.
387+
/// Not a stable API.
385388
pub fn original_children(&self) -> &[Arc<dyn PhysicalExpr>] {
386389
&self.children
387390
}
388391

389392
/// Return the filter's remapped children, if any have been set via
390393
/// [`PhysicalExpr::with_new_children`].
394+
///
395+
/// **Warning:** intended only for `datafusion-proto` (de)serialization.
396+
/// Not a stable API.
391397
pub fn remapped_children(&self) -> Option<&[Arc<dyn PhysicalExpr>]> {
392398
self.remapped_children.as_deref()
393399
}

0 commit comments

Comments
 (0)