projects
/
satune.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa74d0b
)
Adding TablePredicate
author
Hamed
<hamed.gorjiara@gmail.com>
Tue, 20 Jun 2017 18:17:14 +0000
(11:17 -0700)
committer
Hamed
<hamed.gorjiara@gmail.com>
Tue, 20 Jun 2017 18:17:14 +0000
(11:17 -0700)
src/AST/predicate.h
patch
|
blob
|
history
diff --git
a/src/AST/predicate.h
b/src/AST/predicate.h
index 513e3869d5000681826a0e90e0d2fdef951e2d4f..78cf2f68ddf1daa99c0b147a29df15c4490d6e9e 100644
(file)
--- a/
src/AST/predicate.h
+++ b/
src/AST/predicate.h
@@
-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);