You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Stamatis Zampetakis (JIRA)" <ji...@apache.org> on 2019/06/07 15:54:02 UTC

[jira] [Created] (CALCITE-3120) MongoAdapterTest.testGroupByAvgSumCount fails due the order of sort query

Stamatis Zampetakis created CALCITE-3120:
--------------------------------------------

             Summary: MongoAdapterTest.testGroupByAvgSumCount fails due the order of sort query
                 Key: CALCITE-3120
                 URL: https://issues.apache.org/jira/browse/CALCITE-3120
             Project: Calcite
          Issue Type: Bug
          Components: mongodb-adapter
    Affects Versions: 1.19.0
            Reporter: Stamatis Zampetakis
            Assignee: Stamatis Zampetakis


The MongoAdapterTest.testGroupByAvgSumCount fails because $sort operator does not appear at the middle of the query but in the end.

{noformat}
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]
  }
}>
{noformat}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)