aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2010-03-05 16:32:12 +0000
committerdan <dan@noemail.net>2010-03-05 16:32:12 +0000
commitb7dca7d7335b02122a3fd1846723c07a3a5af32f (patch)
tree1b544e6fb8e1422be2e9441147557f0f60bb4ca6 /src/sqliteInt.h
parentf8b4d8c682ecc60197c9c3f5e76f55a3beda9981 (diff)
downloadsqlite-b7dca7d7335b02122a3fd1846723c07a3a5af32f.tar.gz
sqlite-b7dca7d7335b02122a3fd1846723c07a3a5af32f.zip
Modify the vdbe so that the comparison operator opcodes do not modify the data type of operands. Fix for [aa92c76cd4].
FossilOrigin-Name: 8858042fa1449516a2c7dbb991dca3eb6c5794cb
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 86e869663..5720b9cf5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2858,7 +2858,7 @@ void sqlite3ValueSetStr(sqlite3_value*, int, const void *,u8,
void(*)(void*));
void sqlite3ValueFree(sqlite3_value*);
sqlite3_value *sqlite3ValueNew(sqlite3 *);
-char *sqlite3Utf16to8(sqlite3 *, const void*, int);
+char *sqlite3Utf16to8(sqlite3 *, const void*, int, u8);
#ifdef SQLITE_ENABLE_STAT2
char *sqlite3Utf8to16(sqlite3 *, u8, char *, int, int *);
#endif