Searched refs:jointype (Results 1 – 5 of 5) sorted by relevance
80 int jointype = 0; in sqliteJoinType() local105 jointype |= keywords[j].code; in sqliteJoinType()110 jointype |= JT_ERROR; in sqliteJoinType()115 (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || in sqliteJoinType()116 (jointype & JT_ERROR)!=0 in sqliteJoinType()125 jointype = JT_INNER; in sqliteJoinType()126 }else if( jointype & JT_RIGHT ){ in sqliteJoinType()129 jointype = JT_INNER; in sqliteJoinType()131 return jointype; in sqliteJoinType()221 if( pTerm->jointype & JT_NATURAL ){ in sqliteProcessJoin()[all …]
777 int jointype; /* Type of join between this table and the next */ member
195 pNewItem->jointype = pOldItem->jointype; in sqliteSrcListDup()
730 if( i>0 && (pTabList->a[i-1].jointype & JT_LEFT)!=0 ){ in sqliteWhereBegin()
366 if( A && A->nSrc>0 ) A->a[A->nSrc-1].jointype = Y;