Created
August 8, 2013 15:50
-
-
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`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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