File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -416,9 +416,10 @@ pub struct SimpleScalarUDF {
416
416
417
417
impl Debug for SimpleScalarUDF {
418
418
fn fmt ( & self , f : & mut std:: fmt:: Formatter ) -> std:: fmt:: Result {
419
- f. debug_struct ( "ScalarUDF " )
419
+ f. debug_struct ( "SimpleScalarUDF " )
420
420
. field ( "name" , & self . name )
421
421
. field ( "signature" , & self . signature )
422
+ . field ( "return_type" , & self . return_type )
422
423
. field ( "fun" , & "<FUNC>" )
423
424
. finish ( )
424
425
}
@@ -524,9 +525,10 @@ pub struct SimpleAggregateUDF {
524
525
525
526
impl Debug for SimpleAggregateUDF {
526
527
fn fmt ( & self , f : & mut std:: fmt:: Formatter ) -> std:: fmt:: Result {
527
- f. debug_struct ( "AggregateUDF " )
528
+ f. debug_struct ( "SimpleAggregateUDF " )
528
529
. field ( "name" , & self . name )
529
530
. field ( "signature" , & self . signature )
531
+ . field ( "return_type" , & self . return_type )
530
532
. field ( "fun" , & "<FUNC>" )
531
533
. finish ( )
532
534
}
You can’t perform that action at this time.
0 commit comments