diff options
author | drh <> | 2022-12-22 18:44:39 +0000 |
---|---|---|
committer | drh <> | 2022-12-22 18:44:39 +0000 |
commit | edc2713fdc8cecfcc2821da5469bd609418db174 (patch) | |
tree | d0055a7f006114cf06a9abe6b0adf15cec70dd54 /src/vdbeInt.h | |
parent | c2d853e56249bbf5c570178ee916fdd9ec24cad8 (diff) | |
download | sqlite-edc2713fdc8cecfcc2821da5469bd609418db174.tar.gz sqlite-edc2713fdc8cecfcc2821da5469bd609418db174.zip |
Rename the Vdbe.pResultSet field to pResultRow in order to better distinguish
it from other variables with similar names.
FossilOrigin-Name: 1fd6211ef7bd26ed625177bfedfd5153ace547de6a71365ecfa076578d043f1a
Diffstat (limited to 'src/vdbeInt.h')
-rw-r--r-- | src/vdbeInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h index cd112e9c4..03f4ec542 100644 --- a/src/vdbeInt.h +++ b/src/vdbeInt.h @@ -454,7 +454,7 @@ struct Vdbe { int nOp; /* Number of instructions in the program */ int nOpAlloc; /* Slots allocated for aOp[] */ Mem *aColName; /* Column names to return */ - Mem *pResultSet; /* Pointer to an array of results */ + Mem *pResultRow; /* Current output row */ char *zErrMsg; /* Error message written here */ VList *pVList; /* Name of variables */ #ifndef SQLITE_OMIT_TRACE |