EmmyMiao87 commented on a change in pull request #8797:
URL: https://github.com/apache/incubator-doris/pull/8797#discussion_r840999696
##########
File path:
fe/fe-core/src/main/java/org/apache/doris/planner/TableFunctionNode.java
##########
@@ -118,7 +118,7 @@ public void projectSlots(Analyzer analyzer, SelectStmt
selectStmt) throws Analys
for (TupleId tupleId : inputTupleIds) {
TupleDescriptor td = analyzer.getTupleDesc(tupleId);
for (SlotDescriptor sd : td.getSlots()) {
- if (!outputSlotIds.contains(sd.getId())) {
+ if (!outputSlotIds.contains(sd.getId()) &&
!sd.getColumn().isDeleteSignColumn()) {
Review comment:
Need to make sure that this change will not go wrong in the case of line
storage.
Whether be has set null for delete column in row engine.
--
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]