diff options
author | drh <drh@noemail.net> | 2019-10-21 01:04:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-10-21 01:04:11 +0000 |
commit | f5f1915d599b1a0aba8fab35178c90031fdb362d (patch) | |
tree | 769484211e7d36b9bdc428c0c942c1d05817aaf9 /src/sqliteInt.h | |
parent | dd6cc9b52abf6c4ae15a57a9f3d6e3c1e848f589 (diff) | |
download | sqlite-f5f1915d599b1a0aba8fab35178c90031fdb362d.tar.gz sqlite-f5f1915d599b1a0aba8fab35178c90031fdb362d.zip |
Changes to the INSERT logic to make it simpler and faster and so that
it works with generated columns and BEFORE triggers.
FossilOrigin-Name: bc368cb090376d33d3844e3689c4f6bd19eed758e39b878ee67fef93b1c839ea
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 00013bd17..e586674f9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4100,7 +4100,6 @@ void sqlite3ExprCodeFactorable(Parse*, Expr*, int); int sqlite3ExprCodeAtInit(Parse*, Expr*, int); int sqlite3ExprCodeTemp(Parse*, Expr*, int*); int sqlite3ExprCodeTarget(Parse*, Expr*, int); -void sqlite3ExprCodeAndCache(Parse*, Expr*, int); int sqlite3ExprCodeExprList(Parse*, ExprList*, int, int, u8); #define SQLITE_ECEL_DUP 0x01 /* Deep, not shallow copies */ #define SQLITE_ECEL_FACTOR 0x02 /* Factor out constant terms */ |