You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
###
POST {{baseUrl}}/_plugins/_sql/_explain
Content-Type: application/x-ndjson
{
"query": "SELECT Origin, Dest FROM (SELECT * FROM opensearch_dashboards_sample_data_flights WHERE AvgTicketPrice > 100 GROUP BY Origin, Dest, AvgTicketPrice) AS flights WHERE AvgTicketPrice < 1000 ORDER BY AvgTicketPrice"
}
## Return 20 rows
###
POST {{baseUrl}}/_plugins/_sql/_explain
Content-Type: application/x-ndjson
{
"query": "SELECT Origin, Dest FROM (SELECT * FROM opensearch_dashboards_sample_data_flights WHERE AvgTicketPrice > 100 GROUP BY Origin, Dest, AvgTicketPrice) AS flights WHERE AvgTicketPrice < 1000 ORDER BY AvgTicketPrice LIMIT 30"
}
### Return 19 rows, missing row is
[
"Abu Dhabi International Airport",
"Albuquerque International Sunport Airport"
]
What is your host/environment?
OS 2.17
The text was updated successfully, but these errors were encountered:
What is the bug?
Queries with a LIMIT clause and those without it return different results.
How can one reproduce the bug?
What is your host/environment?
The text was updated successfully, but these errors were encountered: