diff options
author | drh <> | 2024-03-18 12:49:30 +0000 |
---|---|---|
committer | drh <> | 2024-03-18 12:49:30 +0000 |
commit | 27a5ee855d6428246ea7fc9511a2a10a85c3199c (patch) | |
tree | 6553c78a8855c593e257bde89219fdab882bdf6b /src/sqliteInt.h | |
parent | 75924d3ae22587cac6c68caad9212a7621e47135 (diff) | |
download | sqlite-27a5ee855d6428246ea7fc9511a2a10a85c3199c.tar.gz sqlite-27a5ee855d6428246ea7fc9511a2a10a85c3199c.zip |
Improvements to EXPLAIN QUERY PLAN output for multi-row VALUES claues.
FossilOrigin-Name: ac6f095e13e43d66c06552c8b01f6bec3407c9d41a34c4cdb0be57b0b828ad0d
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 54fe9458f..01a512649 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3311,6 +3311,7 @@ struct SrcItem { union { char *zIndexedBy; /* Identifier from "INDEXED BY <zIndex>" clause */ ExprList *pFuncArg; /* Arguments to table-valued-function */ + u32 nRow; /* Number of rows in a VALUES clause */ } u1; union { Index *pIBIndex; /* Index structure corresponding to u1.zIndexedBy */ |