aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/summaryfieldcollision.sd
blob: 7717f99f36582364801d82b7b5cde9ff5410ad7c (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 summaryfieldcollision {

  document summaryfieldcollision {

    field title type string {
      indexing: summary | index
    }

    field description type string {
      indexing: summary | index
    }
  }

  document-summary sum1 {
    summary f type string {
      source: title
    }
  }

  document-summary sum2 {
    summary f type string {
      source: description
    }
  }
}