summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexing_multiline_output_conflict.sd
blob: 449fc36c88c3cf793b982a89da71aef4e2219452 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2017 Yahoo Holdings. 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;
        }
    }
}