diff options
author | drh <drh@noemail.net> | 2019-06-11 10:43:56 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-06-11 10:43:56 +0000 |
commit | 8e34e4061b534130bc7495c102120371c8738d95 (patch) | |
tree | 54e870823fd3bfd69c70ba1071e4ff484a99e702 /src/sqliteInt.h | |
parent | b854b767330306ae20b235186af8e75f3c368900 (diff) | |
download | sqlite-8e34e4061b534130bc7495c102120371c8738d95.tar.gz sqlite-8e34e4061b534130bc7495c102120371c8738d95.zip |
Add the new sqlite3ExprUnmapAndDelete() function and use it in place of
separate calls to sqlite3RenameExprUnmap() and sqlite3ExprDelete().
FossilOrigin-Name: 36ea13e0a851a749c9ef292377ecd82dbd4797d38df907b362487fa234c98ca5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 542200795..5c711f952 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3871,6 +3871,7 @@ Expr *sqlite3ExprSimplifiedAndOr(Expr*); Expr *sqlite3ExprFunction(Parse*,ExprList*, Token*, int); void sqlite3ExprAssignVarNumber(Parse*, Expr*, u32); void sqlite3ExprDelete(sqlite3*, Expr*); +void sqlite3ExprUnmapAndDelete(Parse*, Expr*); ExprList *sqlite3ExprListAppend(Parse*,ExprList*,Expr*); ExprList *sqlite3ExprListAppendVector(Parse*,ExprList*,IdList*,Expr*); void sqlite3ExprListSetSortOrder(ExprList*,int); |