Home
last modified time | relevance | path

Searched refs:sqliteExprType (Results 1 – 3 of 3) sorted by relevance

/titanic_44/usr/src/lib/libsqlite/src/
H A Dexpr.c879 sqliteExprType(pExpr->pList->a[pDef->dataType].pExpr); in sqliteExprCheck()
886 if( sqliteExprType(pExpr->pList->a[i].pExpr)==SQLITE_SO_NUM ){ in sqliteExprCheck()
925 int sqliteExprType(Expr *p){ in sqliteExprType() function
965 if( sqliteExprType(p->pLeft)==SQLITE_SO_NUM ){ in sqliteExprType()
988 if( p->pRight && sqliteExprType(p->pRight)==SQLITE_SO_NUM ){ in sqliteExprType()
995 if( sqliteExprType(pList->a[i].pExpr)==SQLITE_SO_NUM ){ in sqliteExprType()
1081 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprCode()
1288 sqliteExprType(pItem->pExpr)==SQLITE_SO_NUM ? "numeric" : "text", in sqliteExprCodeExprList()
1343 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprIfTrue()
1436 if( pParse->db->file_format>=4 && sqliteExprType(pExpr)==SQLITE_SO_TEXT ){ in sqliteExprIfFalse()
H A Dselect.c331 type = sqliteExprType(pOrderBy->a[i].pExpr); in pushOntoSorter()
364 zType[i] = sqliteExprType(pEList->a[i].pExpr)==SQLITE_SO_NUM ? 'n' : 't'; in sqliteAddKeyType()
687 if( sqliteExprType(p)==SQLITE_SO_TEXT ){ in generateColumnTypes()
1217 pE->dataType = sqliteExprType(pEList->a[pE->iColumn].pExpr); in multiSelectSortOrder()
H A DsqliteInt.h1198 int sqliteExprType(Expr*);