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

Add cortex_search_service to dimensions #215

Merged
merged 1 commit into from
Dec 5, 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
7 changes: 5 additions & 2 deletions semantic_model_generator/protos/semantic_model.proto
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,11 @@ message Dimension {
bool unique = 6 [(optional) = true];
// Sample values of this column.
repeated string sample_values = 7 [(optional) = true];
// Name of a Cortex Search Service configured on this column.
string cortex_search_service_name = 9 [(optional) = true];
// A Cortex Search Service configured on this column to retrieve literals.
CortexSearchService cortex_search_service = 8 [(optional) = true];
string cortex_search_service_name = 9
[(optional) = true, deprecated = true];

}

// Fully qualified Cortex Search Service name.
Expand Down
Loading
Loading