diff options
author | drh <drh@noemail.net> | 2016-08-18 14:33:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-08-18 14:33:11 +0000 |
commit | 69c338263abbd1bf5aa2621daddda708feb80beb (patch) | |
tree | a0809a7c156ee213bed6fe65597bbba2ccac32b2 /src/insert.c | |
parent | 8c2b1fde584b096460c95f9e3abf8b5dc452b5d0 (diff) | |
download | sqlite-69c338263abbd1bf5aa2621daddda708feb80beb.tar.gz sqlite-69c338263abbd1bf5aa2621daddda708feb80beb.zip |
Rename the Db.zName field to Db.zDbSName to make it more descriptive and to
distinguish it from all of the other "zName" variables scattered throughout
the code.
FossilOrigin-Name: 92a22f01343a898455fd61c3b8e7d7c954f5b569
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 5dc045ab6..dacd37c7f 100644 --- a/src/insert.c +++ b/src/insert.c @@ -547,7 +547,7 @@ void sqlite3Insert( iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb<db->nDb ); pDb = &db->aDb[iDb]; - zDb = pDb->zName; + zDb = pDb->zDbSName; if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, zDb) ){ goto insert_cleanup; } |