aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/indexinfo_lowercase/indexinfo_lowercase.sd
blob: f45d6f9a8917658ec535002212c5f82fd02d1f19 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema indexinfo_lowercase {

    document indexinfo_lowercase {
        field lc_attribute_src type string {

        }
        field lc_index_src type string {

        }
        field lc_summary_src type string {

        }

        # these fields do not lower case any input, and should not lower case query
        field nc_attribute type string {
            indexing: attribute
        }
        field nc_index type string {
            indexing: index
        }
        field nc_summary type string {
            indexing: summary
        }
    }

    # these fields lower case all input, and should lower case query
    field lc_attribute type string {
        indexing: input lc_attribute_src | lowercase | attribute
    }
    field lc_index type string {
        indexing: input lc_index_src | lowercase | index
    }
    field lc_summary type string {
        indexing: input lc_summary_src | lowercase | summary
    }

    # these field sets contain only lower cased fields, and should lower case query
    fieldset lc_set1 {
        fields: lc_attribute
    }
    fieldset lc_set2 {
        fields: lc_index
    }
    fieldset lc_set3 {
        fields: lc_summary
    }
    fieldset lc_set4 {
        fields: lc_attribute, lc_index
    }
    fieldset lc_set5 {
        fields: lc_attribute, lc_summary
    }
    fieldset lc_set6 {
        fields: lc_index, lc_summary
    }
    fieldset lc_set7 {
        fields: lc_attribute, lc_index, lc_summary
    }

    # these field sets contain at least one non-lower cased field, and should not lower case query
    fieldset nc_set1 {
        fields: nc_attribute
    }
    fieldset nc_set2 {
        fields: nc_index
    }
    fieldset nc_set3 {
        fields: nc_summary
    }
    fieldset nc_set4 {
        fields: nc_attribute, nc_index
    }
    fieldset nc_set5 {
        fields: nc_attribute, nc_summary
    }
    fieldset nc_set6 {
        fields: nc_index, nc_summary
    }
    fieldset nc_set7 {
        fields: nc_attribute, nc_index, nc_summary
    }
    fieldset nc_set8 {
        fields: lc_attribute, nc_index
    }
    fieldset nc_set9 {
        fields: nc_attribute, lc_index
    }
    fieldset nc_set10 {
        fields: lc_attribute, nc_summary
    }
    fieldset nc_set11 {
        fields: nc_attribute, lc_summary
    }
    fieldset nc_set12 {
        fields: lc_index, nc_summary
    }
    fieldset nc_set13 {
        fields: nc_index, lc_summary
    }
    fieldset nc_set14 {
        fields: lc_attribute, nc_index, nc_summary
    }
    fieldset nc_set15 {
        fields: lc_attribute, lc_index, nc_summary
    }
    fieldset nc_set16 {
        fields: lc_attribute, nc_index, lc_summary
    }
    fieldset nc_set17 {
        fields: nc_attribute, lc_index, nc_summary
    }
    fieldset nc_set18 {
        fields: nc_attribute, lc_index, lc_summary
    }
    fieldset nc_set19 {
        fields: nc_attribute, nc_index, lc_summary
    }

}