Home
last modified time | relevance | path

Searched refs:iTable (Results 1 – 12 of 12) sorted by last modified time

/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c47831 if( pIter->iTable==iTable && pIter->pBtree==p ){
47845 pLock->iTable = iTable;
54722 if( iTable>1 ){
72876 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
73388 if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){
73937 assert( pExpr->iTable==0 || pExpr->iTable==1 );
74673 if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 2;
74785 if( pCol->iTable==pExpr->iTable &&
74795 pCol->iTable = pExpr->iTable;
74807 if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
[all …]
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dwhere.c126 mask = getMask(pMaskSet, p->iTable); in exprTableUsage()
180 pInfo->idxRight = pExpr->pRight->iTable; in exprAnalyze()
184 pInfo->idxLeft = pExpr->pLeft->iTable; in exprAnalyze()
240 if( p->op!=TK_COLUMN || p->iTable!=base ){ in findSortingIndex()
755 sqliteVdbeAddOp(v, OP_SetFirst, pX->iTable, brk); in sqliteWhereBegin()
757 pLevel->inP1 = pX->iTable; in sqliteWhereBegin()
761 sqliteVdbeAddOp(v, OP_Rewind, pX->iTable, brk); in sqliteWhereBegin()
762 sqliteVdbeAddOp(v, OP_KeyAsData, pX->iTable, 1); in sqliteWhereBegin()
765 pLevel->inP1 = pX->iTable; in sqliteWhereBegin()
801 pLevel->inP1 = pX->iTable; in sqliteWhereBegin()
[all …]
H A DsqliteInt.h691 int iTable, iColumn; /* When op==TK_COLUMN, then this expr node means the member
H A Dparse.c2497 if( yygotominor.yy242 ) yygotominor.yy242->iTable = ++pParse->nVar; in yy_reduce()
H A Dparse.y556 if( A ) A->iTable = ++pParse->nVar;
H A Dselect.c673 for(j=0; j<pTabList->nSrc && pTabList->a[j].iCursor!=p->iTable; j++){} in generateColumnTypes()
1091 int iTable, /* Insert this value in iTable */ in matchOrderbyToColumn() argument
1145 pE->iTable = iTable; in matchOrderbyToColumn()
1526 static void substExpr(Expr *pExpr, int iTable, ExprList *pEList){ in substExpr() argument
1528 if( pExpr->op==TK_COLUMN && pExpr->iTable==iTable ){ in substExpr()
1545 pExpr->iTable = pNew->iTable; in substExpr()
1552 substExpr(pExpr->pLeft, iTable, pEList); in substExpr()
1553 substExpr(pExpr->pRight, iTable, pEList); in substExpr()
1554 substExprList(pExpr->pList, iTable, pEList); in substExpr()
1558 substExprList(ExprList *pList, int iTable, ExprList *pEList){ in substExprList() argument
[all …]
H A Dexpr.c447 pExpr->iTable = -1; in lookupName()
468 pExpr->iTable = pItem->iCursor; in lookupName()
474 pExpr->iTable = pItem->iCursor; in lookupName()
491 pExpr->iTable = pTriggerStack->newIdx; in lookupName()
495 pExpr->iTable = pTriggerStack->oldIdx; in lookupName()
698 pExpr->iTable = pParse->nTab++; in sqliteExprResolveIds()
719 iSet = pExpr->iTable = pParse->nSet++; in sqliteExprResolveIds()
1047 sqliteVdbeAddOp(v, OP_Recno, pExpr->iTable, 0); in sqliteExprCode()
1069 sqliteVdbeAddOp(v, OP_Variable, pExpr->iTable, 0); in sqliteExprCode()
1514 if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0; in sqliteExprCompare()
[all …]
H A Dbtree.c1035 int fileBtreeCursor(Btree *pBt, int iTable, int wrFlag, BtCursor **ppCur){ in fileBtreeCursor() argument
1055 pCur->pgnoRoot = (Pgno)iTable; in fileBtreeCursor()
2839 static int fileBtreeClearTable(Btree *pBt, int iTable){ in fileBtreeClearTable() argument
2846 if( pCur->pgnoRoot==(Pgno)iTable ){ in fileBtreeClearTable()
2851 rc = clearDatabasePage(pBt, (Pgno)iTable, 0); in fileBtreeClearTable()
2863 static int fileBtreeDropTable(Btree *pBt, int iTable){ in fileBtreeDropTable() argument
2871 if( pCur->pgnoRoot==(Pgno)iTable ){ in fileBtreeDropTable()
2875 rc = sqlitepager_get(pBt->pPager, (Pgno)iTable, (void**)&pPage); in fileBtreeDropTable()
2877 rc = fileBtreeClearTable(pBt, iTable); in fileBtreeDropTable()
2879 if( iTable>2 ){ in fileBtreeDropTable()
[all …]
H A Dbtree.h54 int (*Cursor)(Btree*, int iTable, int wrFlag, BtCursor **ppCur);
116 #define sqliteBtreeDropTable(pBt, iTable) (btOps(pBt)->DropTable(pBt, iTable)) argument
117 #define sqliteBtreeClearTable(pBt, iTable)\ argument
118 (btOps(pBt)->ClearTable(pBt, iTable))
119 #define sqliteBtreeCursor(pBt, iTable, wrFlag, ppCur)\ argument
120 (btOps(pBt)->Cursor(pBt, iTable, wrFlag, ppCur))
H A Dbtree_rb.c716 int iTable, in memRbtreeCursor() argument
724 pCur->pTree = sqliteHashFind(&tree->tblHash, 0, iTable); in memRbtreeCursor()
727 pCur->iTree = iTable; in memRbtreeCursor()
H A Dauth.c119 if( pExpr->iTable==pTabList->a[iSrc].iCursor ) break; in sqliteAuthRead()
127 assert( pExpr->iTable==pStack->newIdx || pExpr->iTable==pStack->oldIdx ); in sqliteAuthRead()
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug28985.phpt175 string iTable;
185 string iTable;

Completed in 354 milliseconds