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

Allow the zSchema argument to sqlite3_serialize() to be NULL to mean the

main database.

FossilOrigin-Name: 5b01b9914fb612ceece34f40d45c7eb97c3504fc5a0a5ff0e67120bdee67f6ee
This commit is contained in:
drh
2018-03-01 22:18:26 +00:00
parent 2825e4ebb1
commit b2194cea4e
3 changed files with 12 additions and 9 deletions

View File

@@ -421,8 +421,8 @@ unsigned char *sqlite3_serialize(
sqlite3_int64 *piSize, /* Write size here, if not NULL */
unsigned int mFlags /* Maybe SQLITE_SERIALIZE_NOCOPY */
){
MemFile *p = memdbFromDbSchema(db, zSchema);
int iDb = sqlite3FindDbName(db, zSchema);
MemFile *p;
int iDb;
Btree *pBt;
sqlite3_int64 sz;
int szPage = 0;
@@ -431,6 +431,9 @@ unsigned char *sqlite3_serialize(
char *zSql;
int rc;
if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
p = memdbFromDbSchema(db, zSchema);
iDb = sqlite3FindDbName(db, zSchema);
if( piSize ) *piSize = -1;
if( iDb<0 ) return 0;
if( p ){