diff options
author | drh <> | 2024-05-17 22:51:03 +0000 |
---|---|---|
committer | drh <> | 2024-05-17 22:51:03 +0000 |
commit | b834f629ccdea6452d92f9bfcf41c24a833a6dbd (patch) | |
tree | 96dd0811e3c59679a023b9ebd6738904d5dd07ab /src/wherecode.c | |
parent | fa0763eb3437cf0c16342e8e38a03014a557eb91 (diff) | |
download | sqlite-b834f629ccdea6452d92f9bfcf41c24a833a6dbd.tar.gz sqlite-b834f629ccdea6452d92f9bfcf41c24a833a6dbd.zip |
Improvements to a VDBE comment. No changes to anything that affects queries.
FossilOrigin-Name: c2188da860a1debd7c5d28b223deeef15035c33c2c5aefae9d9b620b6a2b4677
Diffstat (limited to 'src/wherecode.c')
-rw-r--r-- | src/wherecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index 4aca6eb62..a620a5ac0 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -1436,7 +1436,7 @@ Bitmask sqlite3WhereCodeOneLoopStart( if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){ pLevel->iLeftJoin = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin); - VdbeComment((v, "init LEFT JOIN no-match flag")); + VdbeComment((v, "init LEFT JOIN match flag")); } /* Compute a safe address to jump to if we discover that the table for |