Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts3/
H A Dfts3_expr.c761 static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ in fts3ExprCheckDepth() function
767 rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1); in fts3ExprCheckDepth()
769 rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1); in fts3ExprCheckDepth()
1044 rc = fts3ExprCheckDepth(*ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); in sqlite3Fts3ExprParse()