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
Describe the bug
The result of a query is different when that same query becomes a part of a nested query.
Or for query issues:
Run the query 'SELECT Customer Name FROM staples GROUP BY 1 LIMIT 1'
See correct output with type keyword
Run the query 'SELECT* FROM (SELECT Customer Name FROM staples GROUP BY 1 LIMIT 1)'
See unexpected result with type Double
Expected behavior
The outputs are the same if the queries are grouped by the column name. However, the two queries should still have the same output regardless of grouping as the query in step 1 has an expected output.
Screenshots
Expected output:
Actual ouput:
The text was updated successfully, but these errors were encountered:
Describe the bug
The result of a query is different when that same query becomes a part of a nested query.
Or for query issues:
Customer Name
FROM staples GROUP BY 1 LIMIT 1'Customer Name
FROM staples GROUP BY 1 LIMIT 1)'Expected behavior
The outputs are the same if the queries are grouped by the column name. However, the two queries should still have the same output regardless of grouping as the query in step 1 has an expected output.
Screenshots
Expected output:
Actual ouput:
The text was updated successfully, but these errors were encountered: