mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Remove the ColumnCount opcode, which had become a no-op. (CVS 821)
FossilOrigin-Name: 86deb12d68026913d181f9498144fa56445899f2
This commit is contained in:
13
src/vdbe.c
13
src/vdbe.c
@@ -36,7 +36,7 @@
|
||||
** in this file for details. If in doubt, do not deviate from existing
|
||||
** commenting and indentation practices when changing or adding code.
|
||||
**
|
||||
** $Id: vdbe.c,v 1.194 2003/01/07 13:55:23 drh Exp $
|
||||
** $Id: vdbe.c,v 1.195 2003/01/11 13:30:58 drh Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
#include <ctype.h>
|
||||
@@ -1716,17 +1716,6 @@ case OP_Push: {
|
||||
break;
|
||||
}
|
||||
|
||||
/* Opcode: ColumnCount P1 * *
|
||||
**
|
||||
** Specify the number of column values that will appear in the
|
||||
** array passed as the 4th parameter to the callback.
|
||||
*/
|
||||
case OP_ColumnCount: {
|
||||
p->azColName[pOp->p1] = 0;
|
||||
p->nCallback = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Opcode: ColumnName P1 * P3
|
||||
**
|
||||
** P3 becomes the P1-th column name (first is 0). An array of pointers
|
||||
|
Reference in New Issue
Block a user