diff options
author | drh <> | 2021-08-02 18:03:43 +0000 |
---|---|---|
committer | drh <> | 2021-08-02 18:03:43 +0000 |
commit | cf9d36d1b3a84fb68d2e13acb790c449bff51c15 (patch) | |
tree | 41739e173fe71a4dafba5ffee69002b82a83543a /src/vdbeblob.c | |
parent | f38524d20db165c94dc94e06b62f0aad5942a03b (diff) | |
download | sqlite-cf9d36d1b3a84fb68d2e13acb790c449bff51c15.tar.gz sqlite-cf9d36d1b3a84fb68d2e13acb790c449bff51c15.zip |
Refactor field names in the Column object, zCnName and zCnColl, to make them
unique and thus easier to find amid all the other code.
FossilOrigin-Name: 8b781dcaf68e0cf12a844708c82eee00193e340195cbca915d077e4846983bf3
Diffstat (limited to 'src/vdbeblob.c')
-rw-r--r-- | src/vdbeblob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeblob.c b/src/vdbeblob.c index 34cf880ec..cc427b9c3 100644 --- a/src/vdbeblob.c +++ b/src/vdbeblob.c @@ -187,7 +187,7 @@ int sqlite3_blob_open( /* Now search pTab for the exact column. */ for(iCol=0; iCol<pTab->nCol; iCol++) { - if( sqlite3StrICmp(pTab->aCol[iCol].zName, zColumn)==0 ){ + if( sqlite3StrICmp(pTab->aCol[iCol].zCnName, zColumn)==0 ){ break; } } |