diff options
author | drh <> | 2022-04-18 14:15:07 +0000 |
---|---|---|
committer | drh <> | 2022-04-18 14:15:07 +0000 |
commit | e98b71e65dcb073550c80e8dcf9c37434cd17639 (patch) | |
tree | 50acb118fbdd6c6e9f18515dff4a2740b366face /src/expr.c | |
parent | 2d27d36cba01b9ceff2c36ad0cef9468db370024 (diff) | |
download | sqlite-e98b71e65dcb073550c80e8dcf9c37434cd17639.tar.gz sqlite-e98b71e65dcb073550c80e8dcf9c37434cd17639.zip |
Improved comment field in the bytecode generated for OP_Column and OP_Rowid.
FossilOrigin-Name: 1b2c5cef9560123344db391cd065090d1914724715ec6643d2d9b5fac2051a21
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c index 78bb0c2eb..f5916c53e 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3748,6 +3748,7 @@ void sqlite3ExprCodeGetColumnOfTable( } if( iCol<0 || iCol==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); + VdbeComment((v, "%s.rowid", pTab->zName)); }else{ int op; int x; |