1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Tests for inserting lots of data (~64K) into a single row of a table. (CVS 264)

FossilOrigin-Name: a462c85083d23aa34bd3d0c61d01062fc5ae8230
This commit is contained in:
drh
2001-09-24 03:12:39 +00:00
parent f3256d2c82
commit afa4a020f2
7 changed files with 258 additions and 21 deletions

View File

@@ -30,7 +30,7 @@
** But other routines are also provided to help in building up
** a program instruction by instruction.
**
** $Id: vdbe.c,v 1.76 2001/09/23 20:17:55 drh Exp $
** $Id: vdbe.c,v 1.77 2001/09/24 03:12:40 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -2301,10 +2301,6 @@ case OP_NewRecno: {
** to double the speed of the COPY operation.
*/
int res, rx, cnt, x;
union {
char zBuf[sizeof(int)];
int i;
} ux;
cnt = 0;
v = db->nextRowid;
do{