Searched defs:aXRef (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dupdate.c49 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the local
51 ** aXRef[i]==-1 if the i-th column is not changed. */
90 aXRef = sqliteMalloc( sizeof(int) * pTab->nCol );
91 if( aXRef==0 ) goto update_cleanup;
92 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1;
132 aXRef[j] = i;
153 aXRef[j] = -1;
169 if( aXRef[pIdx->aiColumn[i]]>=0 ) break;
184 if( aXRef[pId
[all...]

Completed in 43 milliseconds