Skip to content

Commit

Permalink
Add cortex_search_service to dimensions (#215)
Browse files Browse the repository at this point in the history
in #213 I
only added to `Column`, forgot about `Dimension`.
  • Loading branch information
sfc-gh-cnivera authored Dec 5, 2024
1 parent 2848549 commit 6506f2c
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 43 deletions.
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

0 comments on commit 6506f2c

Please sign in to comment.