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

  document parent1 {

    field field1 type int {
      indexing: attribute
    }

  }

  rank-profile profile1 {

    function function1() {
      expression: attribute(field1) + 5
    }

    summary-features {
      function1
      attribute(field1)
    }

  }

}