aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-08-25 19:20:04 +0000
committerdrh <drh@noemail.net>2015-08-25 19:20:04 +0000
commite91076981782e96e4c9acb79cff227f19a6425ae (patch)
tree78275b9e0c191c134306476159c4fe5c3eca3c89 /src/sqliteInt.h
parentf8febc1b052ae908f1f95789bc1a630e9fd5666d (diff)
downloadsqlite-e91076981782e96e4c9acb79cff227f19a6425ae.tar.gz
sqlite-e91076981782e96e4c9acb79cff227f19a6425ae.zip
Use the sqlite3IndexColumnAffinity() routine to quickly and correctly find the
affinity of an index column. FossilOrigin-Name: 1ee089a72d789002a0a377347fc51e08ab32fb14
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 4c17904ff..288b25616 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3550,7 +3550,8 @@ int sqlite3VarintLen(u64 v);
#define putVarint sqlite3PutVarint
-const char *sqlite3IndexAffinityStr(Vdbe *, Index *);
+const char *sqlite3IndexAffinityStr(sqlite3*, Index*);
+char sqlite3IndexColumnAffinity(sqlite3*, Index*, int);
void sqlite3TableAffinity(Vdbe*, Table*, int);
char sqlite3CompareAffinity(Expr *pExpr, char aff2);
int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity);