aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/rankprofileinheritance/parent2.sd
blob: fa42f8ea303703a1472521327ec999a190506ce1 (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
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema parent2 {

  document parent2 {

    field field2 type int {
      indexing: attribute
    }

  }

  rank-profile profile2 {

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

    summary-features {
      function2
      attribute(field2)
    }

  }

}