diff options
author | drh <> | 2023-03-10 21:27:59 +0000 |
---|---|---|
committer | drh <> | 2023-03-10 21:27:59 +0000 |
commit | 30ebcf2ecb06884a2e1030c38889f4b016d83384 (patch) | |
tree | 8594b84292d4f4a6ecce9c67113a66530e734286 /src/expr.c | |
parent | a9fffc179f038435903a6e81fe703848eabf6639 (diff) | |
download | sqlite-30ebcf2ecb06884a2e1030c38889f4b016d83384.tar.gz sqlite-30ebcf2ecb06884a2e1030c38889f4b016d83384.zip |
Fix a typo in a comment. No code changes.
FossilOrigin-Name: 76acc075402aac2d14d8279b8095008a842522a0985fdf89200da4339757a40b
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 6135da786..dc90956b3 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2650,7 +2650,7 @@ int sqlite3IsRowid(const char *z){ ** pX is the RHS of an IN operator. If pX is a SELECT statement ** that can be simplified to a direct table access, then return ** a pointer to the SELECT statement. If pX is not a SELECT statement, -** or if the SELECT statement needs to be manifested into a transient +** or if the SELECT statement needs to be materialized into a transient ** table, then return NULL. */ #ifndef SQLITE_OMIT_SUBQUERY |