diff options
author | dan <dan@noemail.net> | 2020-04-29 17:41:29 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2020-04-29 17:41:29 +0000 |
commit | 9ed322d6c3c2562dffd590c59dfc8f83c31937ea (patch) | |
tree | 0e5db4a8ed99f585bccd399d009f73c2fdc69bc3 /src/sqliteInt.h | |
parent | 69887c99d4cd271fe6bf9b40e958c90e409120b1 (diff) | |
download | sqlite-9ed322d6c3c2562dffd590c59dfc8f83c31937ea.tar.gz sqlite-9ed322d6c3c2562dffd590c59dfc8f83c31937ea.zip |
Fix various bugs in new feature on this branch.
FossilOrigin-Name: 823ba94e29dece1687e28711e503a1f56d392c306b0cbc0a20548180834530d1
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 3cbc65cdd..34d6fea7e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3188,14 +3188,16 @@ struct Select { #define SRT_Coroutine 13 /* Generate a single row of result */ #define SRT_Table 14 /* Store result as data with an automatic rowid */ #define SRT_ISet 15 /* Store result as data with rowid */ +#define SRT_Upfrom 16 /* Store result as data with rowid */ /* ** An instance of this object describes where to put of the results of ** a SELECT statement. */ struct SelectDest { - u8 eDest; /* How to dispose of the results. On of SRT_* above. */ + u8 eDest; /* How to dispose of the results. One of SRT_* above. */ int iSDParm; /* A parameter used by the eDest disposal method */ + int iSDParm2; /* A second parameter for the eDest disposal method */ int iSdst; /* Base register where results are written */ int nSdst; /* Number of registers allocated */ char *zAffSdst; /* Affinity used when eDest==SRT_Set */ |