aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/attributeproperties1.sd
blob: 233e665686698f525de4fd4e6159863999f329b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search bolding {
  document test {

    # Setting attribute properties for a non-existent attribute should fail
    field batchid type int {
      indexing: summary | index
      attribute {
        prefetch
      }
    }

    # ... but this is OK
    field anotherbatchid type int {
      indexing: summary | index | attribute
      attribute {
        prefetch
      }
    }
  }
}