mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Fix the EXPLAIN indenter in the command-line shell to correctly
handle NextIfOpen and PrevIfOpen opcodes. FossilOrigin-Name: 01944c53f5c129f48ce8842faaedcf5607dd381e
This commit is contained in:
		@@ -1195,7 +1195,8 @@ static void explain_data_prepare(struct callback_data *p, sqlite3_stmt *pSql){
 | 
			
		||||
  int nAlloc = 0;                 /* Allocated size of p->aiIndent[], abYield */
 | 
			
		||||
  int iOp;                        /* Index of operation in p->aiIndent[] */
 | 
			
		||||
 | 
			
		||||
  const char *azNext[] = { "Next", "Prev", "VPrev", "VNext", "SorterNext", 0 };
 | 
			
		||||
  const char *azNext[] = { "Next", "Prev", "VPrev", "VNext", "SorterNext",
 | 
			
		||||
                           "NextIfOpen", "PrevIfOpen", 0 };
 | 
			
		||||
  const char *azYield[] = { "Yield", "SeekLt", "SeekGt", "RowSetRead", "Rewind", 0 };
 | 
			
		||||
  const char *azGoto[] = { "Goto", 0 };
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user