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 predicate names are not backendified #86

Closed lordpretzel closed 2 years ago

lordpretzel commented 2 years ago

For example, for postgres using upper case predicate names would not work

Q(X) :- R(X,Y). -- this does not work
Q(X) :- "r"(X,Y). -- this does work