Lines Matching refs:SQL_ISRULE
91 if (SQL_ISRULE(pSQLParseNode,select_statement)) in start()
97 DBG_ASSERT(SQL_ISRULE(pTableExp,table_exp)," Fehler im Parse Tree"); in start()
102 if ( SQL_ISRULE(pSelection,scalar_exp_commalist) ) in start()
107 if ( SQL_ISRULE(pColumnRef,general_set_fct) && pColumnRef->count() != 4 ) in start()
118 else if (SQL_ISRULE(pSQLParseNode,update_statement_searched)) in start()
123 else if (SQL_ISRULE(pSQLParseNode,delete_statement_searched)) in start()
132 if (SQL_ISRULE(pWhereClause,where_clause)) in start()
146 DBG_ASSERT(SQL_ISRULE(pWhereClause,opt_where_clause),"OPredicateCompiler: Fehler im Parse Tree"); in start()
160 else if ((SQL_ISRULE(pPredicateNode,search_condition) || (SQL_ISRULE(pPredicateNode,boolean_term))) in execute()
179 else if (SQL_ISRULE(pPredicateNode,boolean_factor)) in execute()
184 else if (SQL_ISRULE(pPredicateNode,comparison_predicate)) in execute()
188 else if (SQL_ISRULE(pPredicateNode,like_predicate)) in execute()
192 else if (SQL_ISRULE(pPredicateNode,between_predicate)) in execute()
196 else if (SQL_ISRULE(pPredicateNode,test_for_null)) in execute()
200 else if(SQL_ISRULE(pPredicateNode,num_value_exp)) in execute()
215 else if(SQL_ISRULE(pPredicateNode,term)) in execute()
241 if ( !(SQL_ISRULE(pPredicateNode->getChild(0),column_ref) || in execute_COMPARE()
247 SQL_ISRULE(pPredicateNode->getChild(2),parameter) || in execute_COMPARE()
249 SQL_ISRULE(pPredicateNode->getChild(2),set_fct_spec) || in execute_COMPARE()
250 SQL_ISRULE(pPredicateNode->getChild(2),position_exp) || in execute_COMPARE()
251 SQL_ISRULE(pPredicateNode->getChild(2),char_substring_fct) || in execute_COMPARE()
253 SQL_ISRULE(pPredicateNode->getChild(2),fold)) ) in execute_COMPARE()
297 SQL_ISRULE(pAtom,parameter) || in execute_LIKE()
299 SQL_ISRULE(pAtom,set_fct_spec) || in execute_LIKE()
300 SQL_ISRULE(pAtom,position_exp) || in execute_LIKE()
301 SQL_ISRULE(pAtom,char_substring_fct) || in execute_LIKE()
303 SQL_ISRULE(pAtom,fold)) ) in execute_LIKE()
345 !(p1stValue->getNodeType() == SQL_NODE_STRING || SQL_ISRULE(p1stValue,parameter)) in execute_BETWEEN()
346 && !(p2ndtValue->getNodeType() == SQL_NODE_STRING || SQL_ISRULE(p2ndtValue,parameter)) in execute_BETWEEN()
439 if (SQL_ISRULE(pPredicateNode,column_ref)) in execute_Operand()
449 if(SQL_ISRULE(pPredicateNode->getChild(2),column_val)) in execute_Operand()
484 else if (SQL_ISRULE(pPredicateNode,parameter)) in execute_Operand()
494 SQL_ISRULE(pPredicateNode,parameter)) in execute_Operand()
506 …else if( SQL_ISRULE(pPredicateNode,set_fct_spec) && SQL_ISPUNCTUATION(pPredicateNode->getChild(0),… in execute_Operand()
536 else if( SQL_ISRULE(pPredicateNode,fold) ) in execute_Operand()
540 else if( SQL_ISRULE(pPredicateNode,set_fct_spec) in execute_Operand()
541 || SQL_ISRULE(pPredicateNode,position_exp) in execute_Operand()
542 || SQL_ISRULE(pPredicateNode,char_substring_fct) in execute_Operand()
547 else if( SQL_ISRULE(pPredicateNode,length_exp) ) in execute_Operand()