mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Expand the number of optimization-disable bits from 16 to 32. Use one of
the new bits to disable the min/max optimization, so that we can more easily verify that we get the same answer both with and within that optimization. FossilOrigin-Name: fd0c9a123b58b7b134ed67f26dbb4196b61e56227f078422cc7e9a3497054c2d
This commit is contained in:
		@@ -9995,7 +9995,7 @@ static int do_meta_command(char *zLine, ShellState *p){
 | 
			
		||||
        /* sqlite3_test_control(int, db, int) */
 | 
			
		||||
        case SQLITE_TESTCTRL_OPTIMIZATIONS:
 | 
			
		||||
          if( nArg==3 ){
 | 
			
		||||
            int opt = (int)strtol(azArg[2], 0, 0);
 | 
			
		||||
            unsigned int opt = (unsigned int)strtol(azArg[2], 0, 0);
 | 
			
		||||
            rc2 = sqlite3_test_control(testctrl, p->db, opt);
 | 
			
		||||
            isOk = 3;
 | 
			
		||||
          }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user