aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeapi.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-03-09 13:24:46 +0000
committerdrh <drh@noemail.net>2015-03-09 13:24:46 +0000
commita9106ca83d7f66a76fb5143a812423148380c305 (patch)
tree2420c7a8fbdc7ddd4df7d675f1f73fda11cbcbf6 /src/vdbeapi.c
parent54fc21438e169c76ed2695505fc7b0e42a46fc68 (diff)
parent80314629393b0bf728465d15ec1f2428c2e9d5c9 (diff)
downloadsqlite-a9106ca83d7f66a76fb5143a812423148380c305.tar.gz
sqlite-a9106ca83d7f66a76fb5143a812423148380c305.zip
Merge recent trunk enhancements into the ota-update branch.
FossilOrigin-Name: 5489cb68921f62f10d832adbc4d19ea8c6c5da50
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r--src/vdbeapi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c
index b29338eb3..8c0038e4e 100644
--- a/src/vdbeapi.c
+++ b/src/vdbeapi.c
@@ -170,6 +170,10 @@ const void *sqlite3_value_text16le(sqlite3_value *pVal){
return sqlite3ValueText(pVal, SQLITE_UTF16LE);
}
#endif /* SQLITE_OMIT_UTF16 */
+/* EVIDENCE-OF: R-12793-43283 Every value in SQLite has one of five
+** fundamental datatypes: 64-bit signed integer 64-bit IEEE floating
+** point number string BLOB NULL
+*/
int sqlite3_value_type(sqlite3_value* pVal){
static const u8 aType[] = {
SQLITE_BLOB, /* 0x00 */