Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.19.0
-
None
Description
The MongoAdapterTest.testGroupByAvgSumCount fails because $sort operator does not appear at the middle of the query but in the end.
org.junit.ComparisonFailure: expected and actual Mongo queries (pipelines) do not match expected:<...$project" : { "[POP" : "$pop", "STATE" : "$state" } } { "$group" : { "_id" : "$STATE", "_1" : { "$sum" : "$POP" }, "_2" : { "$sum" : { "$cond" : [{ "$eq" : ["POP", null] }, 0, 1] } } } } { "$project" : { "STATE" : "$_id", "_1" : "$_1", "_2" : "$_2" } } { "$sort" : { "STATE" : 1 } } { "$project" : { "STATE" : 1, "A" : { "$divide" : [{ "$cond" : [{ "$eq" : ["$_2", { "$literal" : 0 }] }, null, "$_1"] }, "$_2"] }, "S" : { "$cond" : [{ "$eq" : ["$_2", { "$literal" : 0 }] }, null, "$_1"] }, "C" : "$_2"] } }> but was:<...$project" : { "[STATE" : "$state", "POP" : "$pop" } } { "$group" : { "_id" : "$STATE", "_1" : { "$sum" : "$POP" }, "_2" : { "$sum" : { "$cond" : [{ "$eq" : ["POP", null] }, 0, 1] } } } } { "$project" : { "STATE" : "$_id", "_1" : "$_1", "_2" : "$_2" } } { "$project" : { "STATE" : 1, "A" : { "$divide" : [{ "$cond" : [{ "$eq" : ["$_2", { "$literal" : 0 }] }, null, "$_1"] }, "$_2"] }, "S" : { "$cond" : [{ "$eq" : ["$_2", { "$literal" : 0 }] }, null, "$_1"] }, "C" : "$_2" } } { "$sort" : { "STATE" : 1] } }>
Attachments
Issue Links
- Is contained by
-
CALCITE-3156 Replace fongo with mongo java server for test
- Closed