Skip to content
Snippets Groups Projects
Unverified Commit afca21b5 authored by metamben's avatar metamben Committed by GitHub
Browse files

Fix test by ordering at the top level (#27754)

Ordering in nested queries doesn't have to affect how rows are returned
from the embedding queries.
parent b34fae97
No related branches found
No related tags found
No related merge requests found
......@@ -752,10 +752,10 @@
[980]]
(mt/formatted-rows [int]
(mt/run-mbql-query checkins
{:source-query {:source-table $$checkins
:order-by [[:asc $id]]}
{:source-query {:source-table $$checkins}
:fields [$id]
:filter [:= *date "2014-03-30"]})))))))
:filter [:= *date "2014-03-30"]
:order-by [[:asc $id]]})))))))
(deftest aapply-filters-test
(mt/test-drivers (mt/normal-drivers-with-feature :nested-queries :foreign-keys)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment