Searched refs:jointype (Results 1 – 5 of 5) sorted by relevance
84 int jointype = 0; in sqliteJoinType() local109 jointype |= keywords[j].code; in sqliteJoinType()114 jointype |= JT_ERROR; in sqliteJoinType()119 (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || in sqliteJoinType()120 (jointype & JT_ERROR)!=0 in sqliteJoinType()129 jointype = JT_INNER; in sqliteJoinType()130 }else if( jointype & JT_RIGHT ){ in sqliteJoinType()133 jointype = JT_INNER; in sqliteJoinType()135 return jointype; in sqliteJoinType()225 if( pTerm->jointype & JT_NATURAL ){ in sqliteProcessJoin()[all …]
780 int jointype; /* Type of join between this table and the next */ member
198 pNewItem->jointype = pOldItem->jointype; in sqliteSrcListDup()
733 if( i>0 && (pTabList->a[i-1].jointype & JT_LEFT)!=0 ){ in sqliteWhereBegin()
368 if( A && A->nSrc>0 ) A->a[A->nSrc-1].jointype = Y;