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? New engine doesn't support duplicated identifiers in the SELECT clause. This causes a legacy IT to fail when it runs on the new engine. https://github.com/opensearch-project/sql/blob/main/integ-test/src/test/java/org/opensearch/sql/legacy/QueryIT.java#:~:text=selectAllWithFieldReturnsAll
SELECT
How can one reproduce the bug? Steps to reproduce the behavior:
SELECT *, int0 from calcs
"error": { "reason": "Invalid SQL query", "details": "Multiple entries with same key: int0=1 and int0=1", "type": "IllegalArgumentException" }, "status": 400 }
What is the expected behavior? The output should be similar to Legacy where all columns are included in the result
What is your host/environment?
The text was updated successfully, but these errors were encountered:
A duplicate of #785?
Sorry, something went wrong.
Yes, closing this issue. Thanks!
No branches or pull requests
What is the bug?
New engine doesn't support duplicated identifiers in the
SELECT
clause. This causes a legacy IT to fail when it runs on the new engine. https://github.com/opensearch-project/sql/blob/main/integ-test/src/test/java/org/opensearch/sql/legacy/QueryIT.java#:~:text=selectAllWithFieldReturnsAllHow can one reproduce the bug?
Steps to reproduce the behavior:
SELECT *, int0 from calcs
What is the expected behavior?
The output should be similar to Legacy where all columns are included in the result
What is your host/environment?
The text was updated successfully, but these errors were encountered: