aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-01-29 21:18:46 +0000
committerdrh <>2021-01-29 21:18:46 +0000
commitdac9a5f7df0e65f35d6f9de423a90cb7eb52c8b6 (patch)
treec80bcefb506da7f86e7e570b265fc42037c92663 /src/sqliteInt.h
parentb83524795427e9ad8131fe9827e397f973b37932 (diff)
downloadsqlite-dac9a5f7df0e65f35d6f9de423a90cb7eb52c8b6.tar.gz
sqlite-dac9a5f7df0e65f35d6f9de423a90cb7eb52c8b6.zip
Allow "*" wildcards in the RETURNING clause.
FossilOrigin-Name: b0e3ae303db2a035583a05848ab7977e612d7e40c77e31ea9e0166de443c901f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 231ead506..3cadb7f53 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3639,9 +3639,9 @@ struct Trigger {
*
*/
struct TriggerStep {
- u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT */
+ u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT,
+ ** or TK_RETURNING */
u8 orconf; /* OE_Rollback etc. */
- u8 eTrigDest; /* SRT_ destination value for SELECT */
Trigger *pTrig; /* The trigger that this step is a part of */
Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */
char *zTarget; /* Target table for DELETE, UPDATE, INSERT */