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

🤖 Update vespa test files #168

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions tests/local_vespa/test_app/schemas/family_document.sd
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,18 @@ schema family_document {
attribute: fast-search
}
}

struct concept_metadata {
field count type int {}
}

field concepts_metadata type map<string, concept_metadata> {
indexing: summary
struct-field key {
indexing: attribute
attribute: fast-search
}
}
}

import field search_weights_ref.name_weight as name_weight {}
Expand Down Expand Up @@ -245,6 +257,7 @@ schema family_document {
summary document_cdn_object {}
summary document_source_url {}
summary metadata {}
summary concepts_metadata {}
summary corpus_import_id {}
summary corpus_type_name {}
summary collection_title {}
Expand Down
Loading