Skip to content

Instantly share code, notes, and snippets.

Created August 8, 2013 15:50
Show Gist options
  • Save anonymous/6185816 to your computer and use it in GitHub Desktop.
Save anonymous/6185816 to your computer and use it in GitHub Desktop.
This query demonstrates that null values are not reverse translated when they mapped with `null_value`
#!/bin/bash
# Clean
curl -XDELETE 'http://localhost:9200/null?pretty'
# Create index
curl -XPOST 'http://localhost:9200/null?pretty'
# Create mapping
curl -XPOST 'http://localhost:9200/null/type/_mapping?pretty' -d '
{
"type":{
"properties":{
"list":{
"properties":{
"x" : {"type" : "string", "null_value" : "-1"}
}
}
}
}
}'
# Echo mapping
curl -XGET 'http://localhost:9200/null/type/_mapping?pretty'
# Insert document with an array
curl -XPOST 'http://localhost:9200/null/type/?pretty&refresh' -d '
{
"list":[
{
x: "1"
},
{
x: null
},
{
x: "2"
}
]
}'
# Should return a null
curl -XGET 'http://localhost:9200/null/type/_search?pretty' -d '
{
"fields": ["list.x"],
"query":{
"match_all":{}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment