linrrzqqq commented on code in PR #68227:
URL: https://github.com/apache/doris/pull/68227#discussion_r4068951010
##########
fe/fe-core/src/main/java/org/apache/doris/catalog/stream/TableStreamManager.java:
##########
@@ -412,22 +439,43 @@ public void
fillStreamConsumptionValuesMetadataResult(List<TRow> dataBatch) thro
}
continue;
}
- Preconditions.checkArgument(table.get() instanceof
BaseTableStream);
- BaseTableStream stream = (BaseTableStream) table.get();
+ Preconditions.checkArgument(table.get() instanceof
OlapTableStream);
+ OlapTableStream stream = (OlapTableStream) table.get();
+ String dbName = db.get().getFullName();
+ String streamName = stream.getName();
+ long streamId = stream.getId();
+ if (selector != null && !selector.test(dbName, streamName,
streamId, null)) {
Review Comment:
irrelavant
--
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]