Skip to content

Commit ecf24be

Browse files
author
bingtao.yin
committed
update thrift types
1 parent 8487aa5 commit ecf24be

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

fe/fe-core/src/main/java/org/apache/doris/datasource/argo/source/ArgoScanNode.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ protected void createScanRangeLocations() throws UserException {
5858
protected void toThrift(TPlanNode msg) {
5959
msg.node_type = TPlanNodeType.ARGO_SCAN_NODE;
6060
msg.argo_scan_node = new TArgoScanNode();
61+
msg.argo_scan_node.setTupleId(desc.getId().asInt());
6162
msg.argo_scan_node.setTableName(table.getName());
6263
super.toThrift(msg);
6364
}

gensrc/thrift/PlanNodes.thrift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,8 @@ struct TTestExternalScanNode {
751751
}
752752

753753
struct TArgoScanNode {
754-
1: optional string table_name
754+
1: required Types.TTupleId tuple_id
755+
2: optional string table_name
755756
}
756757

757758
struct TSortInfo {

0 commit comments

Comments
 (0)