Skip to content

Commit 8215c7e

Browse files
committed
DataFusion 52 migration
1 parent 34188b6 commit 8215c7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

native/spark-expr/src/struct_funcs/get_struct_field.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ impl PhysicalExpr for GetStructField {
6666
self
6767
}
6868

69-
fn fmt_sql(&self, _: &mut Formatter<'_>) -> std::fmt::Result {
70-
unimplemented!()
69+
fn fmt_sql(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
70+
Display::fmt(self, f)
7171
}
7272

7373
fn data_type(&self, input_schema: &Schema) -> DataFusionResult<DataType> {

0 commit comments

Comments
 (0)