Home
last modified time | relevance | path

Searched refs:zAlias (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c20351 char *zAlias; /* The "B" part of a "A AS B" phrase. zName is the "A" */ member
33352 if( pItem->zAlias && !flag_altform2 ){ in sqlite3_str_vappendf()
33353 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
33363 }else if( pItem->zAlias ){ in sqlite3_str_vappendf()
33364 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
110749 if( pItem->zAlias!=0 ){
110750 if( sqlite3StrICmp(zTab, pItem->zAlias)!=0 ){
110758 if( IN_RENAME_OBJECT && pItem->zAlias ){
114563 pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
131311 if( pItem->zAlias ) sqlite3DbNNFreeNN(db, pItem->zAlias);
[all …]
H A Dshell.c17368 const char *zAlias = (const char*)sqlite3_column_name(p->pCheck,jj+1); in intckSaveKey() local
17369 zLhs = intckMprintf(p, "%z%s%s", zLhs, zLhsSep, zAlias); in intckSaveKey()