1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Databases created using sqlite3_deserialize() should report their filename

as an empty string, not as "x".  Fix for ticket [53043c9793715f08].

FossilOrigin-Name: ff494449efd475878c549728cc22ee9b12d13674068781747fc042a0c1bd09c8
This commit is contained in:
drh
2022-11-19 00:08:35 +00:00
parent 26e0f2e916
commit cf3107c7d4
5 changed files with 24 additions and 10 deletions

View File

@@ -5003,6 +5003,9 @@ const char *sqlite3ErrName(int);
#ifndef SQLITE_OMIT_DESERIALIZE
int sqlite3MemdbInit(void);
int sqlite3IsMemdb(const sqlite3_vfs*);
#else
# define sqlite3IsMemdb(X) 0
#endif
const char *sqlite3ErrStr(int);