diff options
author | drh <drh@noemail.net> | 2019-10-22 21:01:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-10-22 21:01:34 +0000 |
commit | e70fa7feba0b07eb1b5fe4f5373182875e709b32 (patch) | |
tree | 8fdb5f25be29883e784f2bf13bc2deeabdf0ca04 /src/sqliteInt.h | |
parent | 7b8ab230dce94ccbca56a204589066bca1201d28 (diff) | |
download | sqlite-e70fa7feba0b07eb1b5fe4f5373182875e709b32.tar.gz sqlite-e70fa7feba0b07eb1b5fe4f5373182875e709b32.zip |
Take the declared column time into account when computing the values for
generated columns, and apply appropriate affinity.
FossilOrigin-Name: 9e04ba22dfce3998e61331ac229ff543ecccc590284c9dd5def21efbe594fba0
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 06464acb5..e2002810f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4096,6 +4096,9 @@ int sqlite3ExprCodeGetColumn(Parse*, Table*, int, int, int, u8); void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); void sqlite3ExprCodeMove(Parse*, int, int, int); void sqlite3ExprCode(Parse*, Expr*, int); +#ifndef SQLITE_OMIT_GENERATED_COLUMNS +void sqlite3ExprCodeGeneratedColumn(Parse*, Column*, int); +#endif void sqlite3ExprCodeCopy(Parse*, Expr*, int); void sqlite3ExprCodeFactorable(Parse*, Expr*, int); int sqlite3ExprCodeAtInit(Parse*, Expr*, int); |