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

Added length() and substr() functions (CVS 143)

FossilOrigin-Name: 0eef538f3de66fede7c88f8be8c3458d84107c3f
This commit is contained in:
drh
2000-08-28 15:51:43 +00:00
parent 3d441f8082
commit 6ec2733b44
6 changed files with 150 additions and 24 deletions

View File

@@ -27,7 +27,7 @@
** or VDBE. The VDBE implements an abstract machine that runs a
** simple program to access and modify the underlying database.
**
** $Id: vdbe.h,v 1.11 2000/07/28 14:32:50 drh Exp $
** $Id: vdbe.h,v 1.12 2000/08/28 15:51:45 drh Exp $
*/
#ifndef _SQLITE_VDBE_H_
#define _SQLITE_VDBE_H_
@@ -173,7 +173,10 @@ typedef struct VdbeOp VdbeOp;
#define OP_Concat 87
#define OP_Noop 88
#define OP_MAX 88
#define OP_Strlen 89
#define OP_Substr 90
#define OP_MAX 90
/*
** Prototypes for the VDBE interface. See comments on the implementation