Lines Matching refs:pSQLParseNode
80 void OPredicateCompiler::start(OSQLParseNode* pSQLParseNode) in start() argument
82 if (!pSQLParseNode) in start()
91 if (SQL_ISRULE(pSQLParseNode,select_statement)) in start()
93 DBG_ASSERT(pSQLParseNode->count() >= 4,"OFILECursor: Fehler im Parse Tree"); in start()
95 OSQLParseNode * pTableExp = pSQLParseNode->getChild(3); in start()
101 OSQLParseNode* pSelection = pSQLParseNode->getChild(2); in start()
118 else if (SQL_ISRULE(pSQLParseNode,update_statement_searched)) in start()
120 DBG_ASSERT(pSQLParseNode->count() == 5,"OFILECursor: Fehler im Parse Tree"); in start()
121 pWhereClause = pSQLParseNode->getChild(4); in start()
123 else if (SQL_ISRULE(pSQLParseNode,delete_statement_searched)) in start()
125 DBG_ASSERT(pSQLParseNode->count() == 4,"Fehler im Parse Tree"); in start()
126 pWhereClause = pSQLParseNode->getChild(3); in start()