summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/map_attribute/test.sd
blob: 87fc13d48ed53662e1d7997a9becf362535e0e98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
search test {
  document test {
    field str_map type map<string, string> {
      indexing: summary 
      struct-field key {
        indexing: attribute
        attribute: fast-search
      }
      struct-field value {
        indexing: attribute
      }
    }  
    field int_map type map<int, int> {
      indexing: summary 
      struct-field key {
        indexing: attribute
      }
    }  
  }
}