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

Source filtering with wildcards broken when given multiple patterns #5133

Closed

Commits on Feb 15, 2014

  1. Source filtering with wildcards broken when given multiple patterns

    ```
    curl -XPUT 'http://localhost:9200/twitter/tweet/1' -d '{
        "user" : "kimchy",
        "post_date" : "2009-11-15T14:12:12",
        "message" : "trying out Elasticsearch", "retweeted": false
    }'
    ```
    
    No source fields delivered:
    
    ```
    curl -XGET 'http://localhost:9200/twitter/tweet/1?_source=*.id,retweeted&pretty=yes'
    ```
    
    `retweeted` returned:
    
    ```
    curl -XGET 'http://localhost:9200/twitter/tweet/1?_source=retweeted,*.id&pretty=yes'
    ```
    
    Closes elastic#5132.
    dadoonet committed Feb 15, 2014
    Configuration menu
    Copy the full SHA
    7e3de59 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2014

  1. Update after @bleskes review

    dadoonet committed Feb 16, 2014
    Configuration menu
    Copy the full SHA
    3e5b0dc View commit details
    Browse the repository at this point in the history