IITDBGroup / gprom

GProM is a middleware that adds support for provenance to database backends.
http://www.cs.iit.edu/%7edbgroup/research/gprom.php
Apache License 2.0
8 stars 5 forks source link

Datalog aggregation attribute order not observed #84

Closed lordpretzel closed 2 years ago

lordpretzel commented 2 years ago

in Datalog, aggregation does not keep the attribute order as specified by the user

Q(sum(A),B) :- R(X,Y).

is turned into

Q(B,sum(A)) :- R(A,B).