aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexing_multiline_output_conflict.sd
blob: e7671b7423c38b2cf213f6a9a95b577f08ae0760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search indexing_multiline_output_confict {
    document indexing_multiline_output_confict {
        field foo type string {

        }
        field bar type string {

        }
        field baz type string {

        }
    }
    field cox type string {
        indexing {
            input foo | attribute;
            input bar | index;
            input baz | summary;
        }
    }
}