summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/rankprofileinheritance/parent2.sd
blob: 1246f7264b3cc9b6655201d21346167f39dfc594 (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
schema parent2 {

  document parent2 {

    field field2 type int {
      indexing: attribute
    }

  }

  rank-profile profile2 {

    function function2() {
      expression: attribute(field2) + 5
    }

    summary-features {
      function2
      attribute(field2)
    }

  }

}