aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-12-04 12:17:30 +0000
committerdrh <drh@noemail.net>2008-12-04 12:17:30 +0000
commit47b1066f8c8d35c483ab5165ef8e023ef18ec69e (patch)
tree26398952b468efae01c5bb2612f4d2bc55ebbd31 /src
parentfbdc7f69b3fc78b3eebd57dec56af4712d4988dd (diff)
downloadsqlite-47b1066f8c8d35c483ab5165ef8e023ef18ec69e.tar.gz
sqlite-47b1066f8c8d35c483ab5165ef8e023ef18ec69e.zip
Always enable the OP_Blob opcode in the VDBE even when
SQLITE_OMIT_BLOB_LITERAL is defined, since that opcode is used for other purposes as well. Ticket #3518. (CVS 5974) FossilOrigin-Name: 760333de65328281137e02423904f860df572391
Diffstat (limited to 'src')
-rw-r--r--src/vdbe.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vdbe.c b/src/vdbe.c
index 21d67fd53..9e471a086 100644
--- a/src/vdbe.c
+++ b/src/vdbe.c
@@ -43,7 +43,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.788 2008/11/17 15:31:48 danielk1977 Exp $
+** $Id: vdbe.c,v 1.789 2008/12/04 12:17:30 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -932,7 +932,6 @@ case OP_Null: { /* out2-prerelease */
}
-#ifndef SQLITE_OMIT_BLOB_LITERAL
/* Opcode: Blob P1 P2 * P4
**
** P4 points to a blob of data P1 bytes long. Store this
@@ -949,7 +948,6 @@ case OP_Blob: { /* out2-prerelease */
UPDATE_MAX_BLOBSIZE(pOut);
break;
}
-#endif /* SQLITE_OMIT_BLOB_LITERAL */
/* Opcode: Variable P1 P2 * * *
**