Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GeoPointFieldMapper doesn't merge GeoPoint specific properties #5505

Closed
kzwang opened this issue Mar 24, 2014 · 0 comments
Closed

GeoPointFieldMapper doesn't merge GeoPoint specific properties #5505

kzwang opened this issue Mar 24, 2014 · 0 comments

Comments

@kzwang
Copy link
Contributor

kzwang commented Mar 24, 2014

# add mapping
curl -XPUT localhost:9200/test/test/_mapping -d '{
  "test": {
    "properties": {
      "testGeo": {
        "type": "geo_point",
        "validate": false
      }
    }
  }
}'

# update validate to true
curl -XPUT localhost:9200/test/test/_mapping -d '{
  "test": {
    "properties": {
      "testGeo": {
        "type": "geo_point",
        "validate": true
      }
    }
  }
}'

After update, the validate is still false and no exception is thrown. Other fields like store etc. works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants