diff options
author | drh <drh@noemail.net> | 2019-08-26 14:18:28 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-08-26 14:18:28 +0000 |
commit | 554a9dc78ab23f3831dd689fe33fb87f2d60626d (patch) | |
tree | f1237145f8b8c4332a8b1a3b5fb2909e98c1c2b6 /src/sqliteInt.h | |
parent | d86fe44ab5a442a065935cb8b11a138b238dcf4b (diff) | |
download | sqlite-554a9dc78ab23f3831dd689fe33fb87f2d60626d.tar.gz sqlite-554a9dc78ab23f3831dd689fe33fb87f2d60626d.zip |
Improved detection of number of column mismatch for vector assignment
in UPDATE statements. Ticket [78acc9d40f0786e8]
FossilOrigin-Name: bd4bda73df3794eef424eb13e08fc7cc54347d1ac69febaeec41f6b6cb4a42bc
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 f60b6f7ae..9492da17a 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2470,6 +2470,7 @@ struct Expr { ** TK_REGISTER: register number ** TK_TRIGGER: 1 -> new, 0 -> old ** EP_Unlikely: 134217728 times likelihood + ** TK_SELECT_COLUMN: Number of columns on the LHS ** TK_SELECT: 1st register of result vector */ ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. ** TK_VARIABLE: variable number (always >= 1). |