Skip to content

Commit 3f62492

Browse files
committed
physical plan: make fields of placeholder public
1 parent 97a5d95 commit 3f62492

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ use crate::expressions::lit;
4141
#[derive(Debug, PartialEq, Eq, Hash)]
4242
pub struct PlaceholderExpr {
4343
// Placeholder id, e.g. $1 or $a.
44-
id: String,
44+
pub id: String,
4545
// Derived from expression where placeholder is met.
46-
data_type: DataType,
46+
pub data_type: DataType,
4747
}
4848

4949
impl PlaceholderExpr {

0 commit comments

Comments
 (0)