Home
last modified time | relevance | path

Searched refs:jointype (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A Dselect.c84 int jointype = 0; in sqliteJoinType() local
109 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 …]
H A DsqliteInt.h780 int jointype; /* Type of join between this table and the next */ member
H A Dexpr.c198 pNewItem->jointype = pOldItem->jointype; in sqliteSrcListDup()
H A Dwhere.c733 if( i>0 && (pTabList->a[i-1].jointype & JT_LEFT)!=0 ){ in sqliteWhereBegin()
H A Dparse.y368 if( A && A->nSrc>0 ) A->a[A->nSrc-1].jointype = Y;