Skip to content

Instantly share code, notes, and snippets.

@deverton
Created July 20, 2011 01:04
Show Gist options
  • Save deverton/1094119 to your computer and use it in GitHub Desktop.
Save deverton/1094119 to your computer and use it in GitHub Desktop.
Invalid Facet Query NPE Test Case
#!/bin/bash
curl -S -XDELETE http://localhost:9200/testindex > /dev/null
curl -S -XPUT http://localhost:9200/testindex > /dev/null
curl -XPOST http://localhost:9200/testindex/_search?pretty=true -d '{
"query" : { "match_all" : {} },
"facets" : {
"tags" : {
"field" : "tag",
"size" : 3
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment