aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/fieldset/test.sd
blob: a3244751551f24726cc051f28e1984afa3f8f2f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search test {

    document test {

        field word1 type array<string> {
            indexing: index | summary | attribute
            match: word
            stemming: none
            normalizing: none
        }

        field word2 type array<string> {
            indexing: index | summary | attribute
            match: word
            stemming: none
            normalizing: none
        }

    }

    fieldset words {
        fields: word1,word2
    }

}