diff options
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c index dcb5ee171..09b56f489 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3955,6 +3955,7 @@ static int exprCodeInlineFunction( caseExpr.x.pList = pFarg; return sqlite3ExprCodeTarget(pParse, &caseExpr, target); } +#ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC case INLINEFUNC_sqlite_offset: { Expr *pArg = pFarg->a[0].pExpr; if( pArg->op==TK_COLUMN && pArg->iTable>=0 ){ @@ -3964,6 +3965,7 @@ static int exprCodeInlineFunction( } break; } +#endif default: { /* The UNLIKELY() function is a no-op. The result is the value ** of the first argument. |