aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeapi.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-06-21 18:32:11 +0000
committermistachkin <mistachkin@noemail.net>2013-06-21 18:32:11 +0000
commitf5fe3ae9e6ec813a0f015c990ddac7349a933467 (patch)
treefe707c5648260e826cb61bd85e9f08501ff2ca4c /src/vdbeapi.c
parent1654256ac892447558ff0587de76d5b53ac2b6f5 (diff)
parentb01e5b59a2e471d468e1854ef4de4b8f54f3bd6c (diff)
downloadsqlite-f5fe3ae9e6ec813a0f015c990ddac7349a933467.tar.gz
sqlite-f5fe3ae9e6ec813a0f015c990ddac7349a933467.zip
Merge updates from trunk.
FossilOrigin-Name: fa2a91e6c631864846484d13cffdc51856953cd1
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r--src/vdbeapi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c
index 7c861e2d4..426b72c5c 100644
--- a/src/vdbeapi.c
+++ b/src/vdbeapi.c
@@ -813,13 +813,6 @@ int sqlite3_column_type(sqlite3_stmt *pStmt, int i){
return iType;
}
-/* The following function is experimental and subject to change or
-** removal */
-/*int sqlite3_column_numeric_type(sqlite3_stmt *pStmt, int i){
-** return sqlite3_value_numeric_type( columnMem(pStmt,i) );
-**}
-*/
-
/*
** Convert the N-th element of pStmt->pColName[] into a string using
** xFunc() then return that string. If N is out of range, return 0.