Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dselect.c80 int jointype = 0; in sqliteJoinType() local
105 jointype |= keywords[j].code; in sqliteJoinType()
110 jointype |= JT_ERROR; 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()
1716 int jointype = pSrc->a[iFrom].jointype; in flattenSubquery() local
[all …]
H A DsqliteInt.h777 int jointype; /* Type of join between this table and the next */ member
H A Dexpr.c195 pNewItem->jointype = pOldItem->jointype; in sqliteSrcListDup()
H A Dwhere.c730 if( i>0 && (pTabList->a[i-1].jointype & JT_LEFT)!=0 ){ in sqliteWhereBegin()
H A Dparse.y366 if( A && A->nSrc>0 ) A->a[A->nSrc-1].jointype = Y;