Home
last modified time | relevance | path

Searched refs:SF_MultiValue (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dparse.y527 if( (p->selFlags & SF_MultiValue)==0 &&
579 if( ALWAYS(pLhs) ) pLhs->selFlags &= ~SF_MultiValue;
580 pRhs->selFlags &= ~SF_MultiValue;
621 pRight = sqlite3SelectNew(pParse,Y,0,0,0,0,0,SF_Values|SF_MultiValue,0);
622 if( ALWAYS(pLeft) ) pLeft->selFlags &= ~SF_MultiValue;
H A DsqliteInt.h3388 #define SF_MultiValue 0x0000400 /* Single VALUES term with multiple rows */ macro
H A Dselect.c2737 assert( p->selFlags & SF_MultiValue ); in multiSelectValues()
2839 if( p->selFlags & SF_MultiValue ){ in multiSelect()
H A Dexpr.c1032 pRet->selFlags |= SF_MultiValue; in sqlite3ExprListToValues()