mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Change some code that assumes the root-page of sqlite_master is 2 (it is
now 1) (CVS 1333) FossilOrigin-Name: 37ae528fb85799007f4ddfc56a7d9493dbb29cbf
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
*************************************************************************
|
||||
** Internal interface definitions for SQLite.
|
||||
**
|
||||
** @(#) $Id: sqliteInt.h,v 1.224 2004/05/08 08:23:36 danielk1977 Exp $
|
||||
** @(#) $Id: sqliteInt.h,v 1.225 2004/05/10 01:17:37 danielk1977 Exp $
|
||||
*/
|
||||
#include "config.h"
|
||||
#include "sqlite.h"
|
||||
@@ -217,6 +217,11 @@ extern int sqlite_iMallocFail; /* Fail sqliteMalloc() after this many calls */
|
||||
#define MASTER_NAME "sqlite_master"
|
||||
#define TEMP_MASTER_NAME "sqlite_temp_master"
|
||||
|
||||
/*
|
||||
** The root-page of the master database table.
|
||||
*/
|
||||
#define MASTER_ROOT 1
|
||||
|
||||
/*
|
||||
** The name of the schema table.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user