Tested Aqua Data Studio Aqua Data Studio 14.0.0-beta-68 Build #: 33238 on Ubuntu 12.04( Mongo DB 2.4.3) and Windows XP ( Mongo DB 2.0.9).
The following queries return the correct result sets.
select count(valuation) from baseball go select sum(valuation) from baseball go select sum(valuation/valuation) from baseball go select count(valuation), sum(valuation) from baseball go select valuation, count(valuation), sum(valuation/valuation) from baseball group by valuation go
But the following query returns 0 for count(valuation):
select count(valuation), sum(valuation/valuation) from baseball go
These scenarios work now as expected with the fix made for #9644. Thank you, Slava.
These scenarios work now as expected with the fix made for #9644. Thank you, Slava.
Issue #9644 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build ADS 14.0.0-beta-76 (mongo-jdbc 1.2.6) |
No time estimate |
3 issue links |
relates to #9690
Issue #9690Program does not include into the $project operator fields used in aggregation functions when $project operator exists |
relates to #9654
Issue #9654COUNT() in realization for aggregate framework does not count NULL values |
depends upon #9690
Issue #9690Program does not include into the $project operator fields used in aggregation functions when $project operator exists |
The following queries return the correct result sets.
But the following query returns 0 for count(valuation):