Lines Matching refs:getChild

1508         SQL_ISPUNCTUATION(pNode->getChild(0),"(") &&  in checkInnerJoin()
1509 SQL_ISPUNCTUATION(pNode->getChild(2),")")) in checkInnerJoin()
1511 bOk = checkInnerJoin(pNode->getChild(1),_xConnection,_sUpdateTableName); in checkInnerJoin()
1517 if ( SQL_ISTOKEN(pNode->getChild(1),AND) ) in checkInnerJoin()
1518 bOk = checkInnerJoin(pNode->getChild(0),_xConnection,_sUpdateTableName) in checkInnerJoin()
1519 && checkInnerJoin(pNode->getChild(2),_xConnection,_sUpdateTableName); in checkInnerJoin()
1525 if (!(SQL_ISRULE(pNode->getChild(0),column_ref) && in checkInnerJoin()
1526 SQL_ISRULE(pNode->getChild(2),column_ref) && in checkInnerJoin()
1527 pNode->getChild(1)->getNodeType() == SQL_NODE_EQUAL)) in checkInnerJoin()
1532 …OSQLParseTreeIterator::getColumnRange( pNode->getChild(0), _xConnection, sColumnName, sTableRange … in checkInnerJoin()
1536 …OSQLParseTreeIterator::getColumnRange( pNode->getChild(2), _xConnection, sColumnName, sTableRange … in checkInnerJoin()
1562 OSQLParseNode* pJoinType = pJoin->getChild(1); in checkJoin()
1565 pOuterType = pJoinType->getChild(0); in checkJoin()
1573 bLeftSide = SQL_ISTOKEN(pOuterType->getChild(0),LEFT); in checkJoin()
1574 bCheck = bLeftSide || SQL_ISTOKEN(pOuterType->getChild(0),RIGHT); in checkJoin()
1581 pTableRef = pJoin->getChild(0); in checkJoin()
1583 pTableRef = pJoin->getChild(3); in checkJoin()
1588 … pTableRef->getChild(0)->parseNodeToStr( sTableRange, _xConnection, NULL, sal_False, sal_False ); in checkJoin()
1595 OSQLParseNode* pWhereOpt = pSqlParseNode->getChild(3)->getChild(1); in checkJoin()
1597 bOk = checkInnerJoin(pWhereOpt->getChild(1),_xConnection,_sUpdateTableName); in checkJoin()