aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2024-12-02 16:24:47 +0000
committerdrh <>2024-12-02 16:24:47 +0000
commitc9ac238b92a5d1af3e91b3bb38e182b2a472c287 (patch)
tree920af2af326fd5fa37f2b7fcb53d5f6e4abf4547 /src
parentbfdeb1f6d561f5a9ea53a662810704b6fcb4e213 (diff)
downloadsqlite-c9ac238b92a5d1af3e91b3bb38e182b2a472c287.tar.gz
sqlite-c9ac238b92a5d1af3e91b3bb38e182b2a472c287.zip
Fix a comment typo on the sqlite3ExprIsSingleTableConstraint() routine.
FossilOrigin-Name: 346a845bf1cd1c7e542f7bf763d86c197d9a3b4f3ea38ade416790a1cf80e6f2
Diffstat (limited to 'src')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index 435ec9d78..37923bc84 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -2646,7 +2646,7 @@ static int sqlite3ExprIsTableConstant(Expr *p, int iCur, int bAllowSubq){
** (4a) pExpr must come from an ON clause..
** (4b) and specifically the ON clause associated with the LEFT JOIN.
**
-** (5) If pSrc is not the right operand of a LEFT JOIN or the left
+** (5) If pSrc is the right operand of a LEFT JOIN or the left
** operand of a RIGHT JOIN, then pExpr must be from the WHERE
** clause, not an ON clause.
**