diff options
author | drh <drh@noemail.net> | 2006-06-13 23:51:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-06-13 23:51:34 +0000 |
commit | 4be8b51ee19b19ee837cec8e79a4faec90994af7 (patch) | |
tree | 84222b4b34038c828690782f3575b20f28b90903 /src/vdbeapi.c | |
parent | 88897a72e98ede8c4a90e0dede1ad3cf476ec470 (diff) | |
download | sqlite-4be8b51ee19b19ee837cec8e79a4faec90994af7.tar.gz sqlite-4be8b51ee19b19ee837cec8e79a4faec90994af7.zip |
The echo module test is now running. Added the tclvar module test but have
not yet done anything with it. (CVS 3234)
FossilOrigin-Name: 29199eeea4c46168ccaa7535d4941bd740479dee
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r-- | src/vdbeapi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c index 94f18aa60..60c8585b1 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c @@ -454,11 +454,9 @@ const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){ columnMallocFailure(pStmt); return val; } -#if 0 sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){ return columnMem(pStmt, i); } -#endif #ifndef SQLITE_OMIT_UTF16 const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){ const void *val = sqlite3_value_text16( columnMem(pStmt,i) ); |