aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeapi.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-02-27 00:33:15 +0000
committerdrh <drh@noemail.net>2015-02-27 00:33:15 +0000
commit22ec13466cbc6ce4f3cc642e5c23c5d52dcace27 (patch)
tree332798e342091b3c8a07b61f3136b0fa53d90259 /src/vdbeapi.c
parent38e40ee2e5e4960bd5c7247018da08b018f1b552 (diff)
downloadsqlite-22ec13466cbc6ce4f3cc642e5c23c5d52dcace27.tar.gz
sqlite-22ec13466cbc6ce4f3cc642e5c23c5d52dcace27.zip
Add a couple of requirements marks.
FossilOrigin-Name: d70b0fd4c94f2b70cf31c2ab9ef7a2fb2e71c182
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 */