Browse Source

Add mapping so aggregation works in ES 5.x

tags/v1.2.2
Paul Bonser 7 years ago
parent
commit
b04496cc3e
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      goes_test.go

+ 10
- 0
goes_test.go View File

@@ -1037,6 +1037,16 @@ func (s *GoesTestSuite) TestAggregations(c *C) {
"index.number_of_shards": 1,
"index.number_of_replicas": 0,
},
"mappings": map[string]interface{}{
docType: map[string]interface{}{
"properties": map[string]interface{}{
"user": map[string]interface{}{
"type": "string",
"index": "not_analyzed",
},
},
},
},
}

defer conn.DeleteIndex(indexName)


Loading…
Cancel
Save