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/sqliteInt.h | |
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/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0ce56ceab..17f3efc6d 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1097,7 +1097,7 @@ typedef struct With With; ** databases may be attached. */ struct Db { - char *zName; /* Name of this database */ + char *zDbSName; /* Name of this database. (schema name, not filename) */ Btree *pBt; /* The B*Tree structure for this database file */ u8 safety_level; /* How aggressive at syncing data to disk */ u8 bSyncSet; /* True if "PRAGMA synchronous=N" has been run */ |