Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

branch-2.1: [chore](binlog) Add table type to getMeta method #45942 #45972

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java
Original file line number Diff line number Diff line change
Expand Up @@ -6159,6 +6159,7 @@ private static void getTableMeta(OlapTable olapTable, TGetMetaDBMeta dbMeta) {
try {
tableMeta.setId(olapTable.getId());
tableMeta.setName(olapTable.getName());
tableMeta.setType(olapTable.getType().name());

PartitionInfo tblPartitionInfo = olapTable.getPartitionInfo();

Expand Down
1 change: 1 addition & 0 deletions gensrc/thrift/FrontendService.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -1557,6 +1557,7 @@ struct TGetMetaTableMeta {
2: optional string name
3: optional bool in_trash
4: optional list<TGetMetaPartitionMeta> partitions
5: optional string type
}

struct TGetMetaDBMeta {
Expand Down
Loading