1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove additional traces (mostly in comments) of the Table.dbMem field.

FossilOrigin-Name: 5c58f44aeb224e106497368d9290d75a08807761
This commit is contained in:
drh
2010-07-23 17:06:32 +00:00
parent 1feeaed291
commit b2468954c2
5 changed files with 22 additions and 17 deletions

View File

@@ -422,7 +422,6 @@ void sqlite3SchemaFree(void *p){
sqlite3HashInit(&pSchema->tblHash);
for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
Table *pTab = sqliteHashData(pElem);
assert( pTab->dbMem==0 );
sqlite3DeleteTable(0, pTab);
}
sqlite3HashClear(&temp1);