Adding TablePredicate
authorHamed <hamed.gorjiara@gmail.com>
Tue, 20 Jun 2017 18:17:14 +0000 (11:17 -0700)
committerHamed <hamed.gorjiara@gmail.com>
Tue, 20 Jun 2017 18:17:14 +0000 (11:17 -0700)
src/AST/predicate.h

index 513e3869d5000681826a0e90e0d2fdef951e2d4f..78cf2f68ddf1daa99c0b147a29df15c4490d6e9e 100644 (file)
@@ -10,6 +10,11 @@ struct Predicate {
        VectorSet* domains;
 };
 
+struct TablePredicate{
+    CompOp op;
+    Table* table;
+};
+
 
 Predicate* allocPredicate(CompOp op, Set ** domain, uint numDomain);
 void deletePredicate(Predicate* predicate);