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

  document parent1 {

    field field1 type int {
      indexing: attribute
    }

  }

  rank-profile profile1 {

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

    function function1b() {
      expression: attribute(field1) + 42
    }

    summary-features {
      function1
      attribute(field1)
    }

    match-features {
      function1b
    }      
  }

}