mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Made detectSchemaProblem function and aSchemaTable array static. Ticket [6f8b0c5855].
FossilOrigin-Name: c6f22f3e38018246a2add1a509aa6c5c55b7e0be
This commit is contained in:
		@@ -274,7 +274,7 @@ typedef struct GenfkeyCb GenfkeyCb;
 | 
			
		||||
")"
 | 
			
		||||
 | 
			
		||||
typedef struct SchemaTable SchemaTable;
 | 
			
		||||
struct SchemaTable {
 | 
			
		||||
static struct SchemaTable {
 | 
			
		||||
  const char *zName;
 | 
			
		||||
  const char *zObject;
 | 
			
		||||
  const char *zPragma;
 | 
			
		||||
@@ -731,7 +731,7 @@ static int invokeCallback(void *p, int nArg, char **azArg, char **azCol){
 | 
			
		||||
  return pCb->xData(pCb->pCtx, pCb->eType, azArg[0]);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int detectSchemaProblem(
 | 
			
		||||
static int detectSchemaProblem(
 | 
			
		||||
  sqlite3 *db,                   /* Database connection */
 | 
			
		||||
  const char *zMessage,          /* English language error message */
 | 
			
		||||
  const char *zSql,              /* SQL statement to run */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user