Closed GoogleCodeExporter closed 9 years ago
Take a look at issue 51 and issue 185. In the past we have seen similar
Exception.
Original comment by khfaraaz82
on 18 Mar 2014 at 9:18
As a workaround, the equivalent query using a tmp file below.
insert into dataset tmp(
for $t in dataset page_views
distinct by $t.action, $t.name
return $t
);
for $t in dataset tmp
group by $g := $t.user with $t
return {
"name": $g,
"count": count($t)
};
Original comment by ker...@gmail.com
on 18 Mar 2014 at 11:09
Pigmix blocker - issue is aggregation related.
Original comment by ker...@gmail.com
on 17 Nov 2014 at 2:30
Original comment by buyingyi@gmail.com
on 18 Nov 2014 at 8:02
Original issue reported on code.google.com by
ker...@gmail.com
on 18 Mar 2014 at 9:04