Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:jointype

10170 ** The jointype starts out showing the join type between the current table
10173 ** jointype expresses the join between the table and the previous table.
10188 u8 jointype; /* Type of join between this able and the previous */
10203 ** Permitted values of the SrcList.a.jointype field
69732 if( pItem[1].jointype & JT_NATURAL ){
71639 pNewItem->jointype = pOldItem->jointype;
80177 p->a[i].jointype = p->a[i-1].jointype;
80179 p->a[0].jointype = 0;
90046 int jointype = 0;
90073 jointype |= aKeyword[j].code;
90079 jointype |= JT_ERROR;
90084 (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) ||
90085 (jointype & JT_ERROR)!=0
90092 jointype = JT_INNER;
90093 }else if( (jointype & JT_OUTER)!=0
90094 && (jointype & (JT_LEFT|JT_RIGHT))!=JT_LEFT ){
90097 jointype = JT_INNER;
90099 return jointype;
90257 isOuter = (pRight->jointype & JT_OUTER)!=0;
90262 if( pRight->jointype & JT_NATURAL ){
92688 if( (pSubitem->jointype & JT_OUTER)!=0 ){
92839 u8 jointype = 0;
92846 jointype = pSubitem->jointype;
92886 pSrc->a[iFrom].jointype = jointype;
93246 if( (pFrom->jointype & JT_NATURAL)!=0
100367 if( pSrc->jointype & JT_LEFT ){
101292 if( pLevel->iFrom>0 && (pTabItem[0].jointype & JT_LEFT)!=0 ){
102236 doNotReorder = (pTabItem->jointype & (JT_LEFT|JT_CROSS))!=0;
105072 if( ALWAYS(yygotominor.yy259 && yygotominor.yy259->nSrc>0) ) yygotominor.yy259->a[yygotominor.yy259->nSrc-1].jointype = (u8)yymsp[0].minor.yy4;