Exemple #1
0
 def p_bqlfn_predrel_hypothetical(self, cond0, constraints, col):
     return ast.ExpBQLPredRel(cond0, None, constraints, col)
Exemple #2
0
 def p_bqlfn_predrel_both(self, cond0, cond1, constraints, col):
     return ast.ExpBQLPredRel(cond0, cond1, constraints, col)
Exemple #3
0
 def p_bqlfn_predrel_existing(self, cond0, cond1, col):
     return ast.ExpBQLPredRel(cond0, cond1, None, col)