We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is the bug?
SELECT * statement returns null for unexpanded object field.
SELECT *
How can one reproduce the bug?
POST http://localhost:9200/object-test/_doc/ { "account.name.first": "John" } POST http://localhost:9200/_plugins/_sql { "query": "SELECT * FROM object-test" } { "schema": [ { "name": "account", "type": "object" } ], "datarows": [ [ null ] ], "total": 1, "size": 1, "status": 200 }
What is the expected behavior?
Return the same result as SELECT account.name.first.
SELECT account.name.first
What is your host/environment?
Do you have any additional context?
The root cause maybe the same as described here: #1135 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the bug?
SELECT *
statement returns null for unexpanded object field.How can one reproduce the bug?
What is the expected behavior?
Return the same result as
SELECT account.name.first
.What is your host/environment?
Do you have any additional context?
The root cause maybe the same as described here: #1135 (comment)
The text was updated successfully, but these errors were encountered: