diff options
author | drh <drh@noemail.net> | 2016-08-19 18:28:00 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-08-19 18:28:00 +0000 |
commit | 4602b8e89d6949617f01f8e1f0cc0f2fb1d6bd18 (patch) | |
tree | 7f03417d2c74a5efc0982e75dd077e2578d408f9 /src/wherecode.c | |
parent | b684fd5c4a5ade7cb6f7de5a13f86654e293ef6d (diff) | |
download | sqlite-4602b8e89d6949617f01f8e1f0cc0f2fb1d6bd18.tar.gz sqlite-4602b8e89d6949617f01f8e1f0cc0f2fb1d6bd18.zip |
Fix an obsolete comment on codeEqualityTerm(). No changes to code.
FossilOrigin-Name: d07be5afb0a915769382dfd815403f8832cb3eec
Diffstat (limited to 'src/wherecode.c')
-rw-r--r-- | src/wherecode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index d84ace192..dd15b5893 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -358,8 +358,8 @@ static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){ ** ** The current value for the constraint is left in register iReg. ** -** For a constraint of the form X=expr, the expression is evaluated and its -** result is left on the stack. For constraints of the form X IN (...) +** For a constraint of the form X=expr, the expression is evaluated in +** straight-line code. For constraints of the form X IN (...) ** this routine sets up a loop that will iterate over all values of X. */ static int codeEqualityTerm( |