File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ public LogicalProperties computeLogicalProperties() {
203
203
} else {
204
204
Supplier <List <Slot >> outputSupplier = Suppliers .memoize (this ::computeOutput );
205
205
Supplier <DataTrait > fdSupplier = () -> this instanceof LogicalPlan
206
- ? ((LogicalPlan ) this ).computeFuncDeps ()
206
+ ? ((LogicalPlan ) this ).computeDataTrait ()
207
207
: DataTrait .EMPTY_TRAIT ;
208
208
return new LogicalProperties (outputSupplier , fdSupplier );
209
209
}
Original file line number Diff line number Diff line change 28
28
*/
29
29
public interface BlockFuncDepsPropagation extends LogicalPlan {
30
30
@ Override
31
- default DataTrait computeFuncDeps () {
31
+ default DataTrait computeDataTrait () {
32
32
return DataTrait .EMPTY_TRAIT ;
33
33
}
34
34
Original file line number Diff line number Diff line change 28
28
*/
29
29
public interface PropagateFuncDeps extends LogicalPlan {
30
30
@ Override
31
- default DataTrait computeFuncDeps () {
31
+ default DataTrait computeDataTrait () {
32
32
if (children ().size () == 1 ) {
33
33
// Note when changing function dependencies, we always clone it.
34
34
// So it's safe to return a reference
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ default LogicalPlan recomputeLogicalProperties() {
62
62
* - BlockFDPropagation: clean the fd
63
63
* - PropagateFD: propagate the fd
64
64
*/
65
- default DataTrait computeFuncDeps () {
65
+ default DataTrait computeDataTrait () {
66
66
DataTrait .Builder fdBuilder = new DataTrait .Builder ();
67
67
computeUniform (fdBuilder );
68
68
computeUnique (fdBuilder );
You can’t perform that action at this time.
0 commit comments