1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Fix to the database connection validity checker. Other test coverage

enhancements.

FossilOrigin-Name: 0f6291bbbd31673e2a65f38c7fc364c33719d25e
This commit is contained in:
drh
2010-02-25 23:44:15 +00:00
parent bee8065e37
commit e294da02ba
4 changed files with 15 additions and 13 deletions

View File

@@ -202,7 +202,7 @@ void sqlite3FinishCoding(Parse *pParse){
pParse->isMultiWrite && pParse->mayAbort);
pParse->rc = SQLITE_DONE;
pParse->colNamesSet = 0;
}else if( pParse->rc==SQLITE_OK ){
}else{
pParse->rc = SQLITE_ERROR;
}
pParse->nTab = 0;