diff options
author | drh <> | 2021-07-03 18:57:40 +0000 |
---|---|---|
committer | drh <> | 2021-07-03 18:57:40 +0000 |
commit | 24384d88d670da1e5609c782669b104cfe1fe37c (patch) | |
tree | a05e85ef5165e4d7235c5aa4de86e4457f7a6ca4 /src/insert.c | |
parent | 5c46a7e5555fb72c94698b21ef8490083243edb0 (diff) | |
download | sqlite-24384d88d670da1e5609c782669b104cfe1fe37c.tar.gz sqlite-24384d88d670da1e5609c782669b104cfe1fe37c.zip |
Fix a (harmless) typo in a comment. No code changes.
FossilOrigin-Name: d2b9b8daa3b87c3dba1329e2f2f44b60d6b5bb9a49d741045aa20cc7813446b2
Diffstat (limited to 'src/insert.c')
-rw-r--r-- | src/insert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert.c b/src/insert.c index 1ed0b4315..63ffa5edd 100644 --- a/src/insert.c +++ b/src/insert.c @@ -113,7 +113,7 @@ const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){ ** Compute the affinity string for table pTab, if it has not already been ** computed. As an optimization, omit trailing SQLITE_AFF_BLOB affinities. ** -** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and +** If the affinity exists (if it is not entirely SQLITE_AFF_BLOB values) and ** if iReg>0 then code an OP_Affinity opcode that will set the affinities ** for register iReg and following. Or if affinities exists and iReg==0, ** then just set the P4 operand of the previous opcode (which should be |