Skip to content

Commit

Permalink
Add Support Real time mock table.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 18, 2024
1 parent ff5406a commit 04ef902
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.36.2029
1.36.2030
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ namespace AlibabaCloud
std::string getLastSyncConfig()const;
std::string getType()const;
std::vector<FieldsItem> getFields()const;
std::string getMockTableName()const;
std::string getRegisterDatasourceName()const;
std::string getFeatureEntityId()const;
std::vector<std::string> getTags()const;
Expand Down Expand Up @@ -88,6 +89,7 @@ namespace AlibabaCloud
std::string lastSyncConfig_;
std::string type_;
std::vector<FieldsItem> fields_;
std::string mockTableName_;
std::string registerDatasourceName_;
std::string featureEntityId_;
std::vector<std::string> tags_;
Expand Down
7 changes: 7 additions & 0 deletions paifeaturestore/src/model/GetFeatureViewResult.cc
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ void GetFeatureViewResult::parse(const std::string &payload)
lastSyncConfig_ = value["LastSyncConfig"].asString();
if(!value["PublishTableScript"].isNull())
publishTableScript_ = value["PublishTableScript"].asString();
if(!value["MockTableName"].isNull())
mockTableName_ = value["MockTableName"].asString();

}

Expand Down Expand Up @@ -190,6 +192,11 @@ std::vector<GetFeatureViewResult::FieldsItem> GetFeatureViewResult::getFields()c
return fields_;
}

std::string GetFeatureViewResult::getMockTableName()const
{
return mockTableName_;
}

std::string GetFeatureViewResult::getRegisterDatasourceName()const
{
return registerDatasourceName_;
Expand Down

0 comments on commit 04ef902

Please sign in to comment.