TsukiokaKogane commented on code in PR #63850:
URL: https://github.com/apache/doris/pull/63850#discussion_r3361783260


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalOlapTableStreamScan.java:
##########
@@ -179,28 +197,29 @@ public LogicalOlapTableStreamScan 
withCachedOutput(List<Slot> outputSlots) {
         return AbstractPlan.copyWithSameId(this, () ->
                 new LogicalOlapTableStreamScan(relationId, (Table) table, 
qualifier,
                         groupExpression, Optional.empty(),
-                        selectedPartitionIds, partitionPruned, 
selectedTabletIds,
+                        selectedPartitionIds, partitionPruned, 
hasPartitionPredicate, selectedTabletIds,
                         selectedIndexId, indexSelected, preAggStatus, 
manuallySpecifiedPartitions, hints,
                         cacheSlotWithSlotName, Optional.of(outputSlots), 
tableSample, directMvScan, colToSubPathsMap,
                         manuallySpecifiedTabletIds, operativeSlots, 
virtualColumns, scoreOrderKeys, scoreLimit,
-                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
isIncrementalScan));
+                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
partitionPrunablePredicates,
+                        changeScanInfo, isNormalized, isIncrementalScan));
     }
 
     @Override
     public LogicalOlapTableStreamScan withOperativeSlots(Collection<Slot> 
operativeSlots) {
         return AbstractPlan.copyWithSameId(this, () ->
                 new LogicalOlapTableStreamScan(relationId, (Table) table, 
qualifier,
                         groupExpression, Optional.of(getLogicalProperties()),
-                        selectedPartitionIds, partitionPruned, 
selectedTabletIds,
+                        selectedPartitionIds, partitionPruned, 
hasPartitionPredicate, selectedTabletIds,
                         selectedIndexId, indexSelected, preAggStatus, 
manuallySpecifiedPartitions,
                         hints, cacheSlotWithSlotName, cachedOutput, 
tableSample, directMvScan, colToSubPathsMap,
                         manuallySpecifiedTabletIds, operativeSlots, 
virtualColumns, scoreOrderKeys, scoreLimit,
-                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
isIncrementalScan));
+                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
partitionPrunablePredicates,
+                        changeScanInfo, isNormalized, isIncrementalScan));
     }
 
     @Override
     public List<Slot> getOutputByIndex(long indexId) {

Review Comment:
   stream 只是个review 应该建不了



##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalOlapTableStreamScan.java:
##########
@@ -179,28 +197,29 @@ public LogicalOlapTableStreamScan 
withCachedOutput(List<Slot> outputSlots) {
         return AbstractPlan.copyWithSameId(this, () ->
                 new LogicalOlapTableStreamScan(relationId, (Table) table, 
qualifier,
                         groupExpression, Optional.empty(),
-                        selectedPartitionIds, partitionPruned, 
selectedTabletIds,
+                        selectedPartitionIds, partitionPruned, 
hasPartitionPredicate, selectedTabletIds,
                         selectedIndexId, indexSelected, preAggStatus, 
manuallySpecifiedPartitions, hints,
                         cacheSlotWithSlotName, Optional.of(outputSlots), 
tableSample, directMvScan, colToSubPathsMap,
                         manuallySpecifiedTabletIds, operativeSlots, 
virtualColumns, scoreOrderKeys, scoreLimit,
-                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
isIncrementalScan));
+                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
partitionPrunablePredicates,
+                        changeScanInfo, isNormalized, isIncrementalScan));
     }
 
     @Override
     public LogicalOlapTableStreamScan withOperativeSlots(Collection<Slot> 
operativeSlots) {
         return AbstractPlan.copyWithSameId(this, () ->
                 new LogicalOlapTableStreamScan(relationId, (Table) table, 
qualifier,
                         groupExpression, Optional.of(getLogicalProperties()),
-                        selectedPartitionIds, partitionPruned, 
selectedTabletIds,
+                        selectedPartitionIds, partitionPruned, 
hasPartitionPredicate, selectedTabletIds,
                         selectedIndexId, indexSelected, preAggStatus, 
manuallySpecifiedPartitions,
                         hints, cacheSlotWithSlotName, cachedOutput, 
tableSample, directMvScan, colToSubPathsMap,
                         manuallySpecifiedTabletIds, operativeSlots, 
virtualColumns, scoreOrderKeys, scoreLimit,
-                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
isIncrementalScan));
+                        scoreRangeInfo, annOrderKeys, annLimit, tableAlias, 
partitionPrunablePredicates,
+                        changeScanInfo, isNormalized, isIncrementalScan));
     }
 
     @Override
     public List<Slot> getOutputByIndex(long indexId) {

Review Comment:
   stream 只是个view 应该建不了



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to