aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-02-07 01:12:53 +0000
committerdrh <drh@noemail.net>2020-02-07 01:12:53 +0000
commitb48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e (patch)
tree4f85a82a3053870293425b7a994a155c874741a4 /src/sqliteInt.h
parentc84ad3185111e6f437fd89eb702614a232e0c76f (diff)
downloadsqlite-b48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e.tar.gz
sqlite-b48c0d59faf3bfd3e1fc0c3bed5557816c36cb7e.zip
Simplify the code by removing the unsupported and undocumented
SQLITE_HAS_CODEC compile-time option FossilOrigin-Name: 5a877221ce90e7523059353a68650c5fdd28ed032807afc2f10afbfbf864bdfe
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index f0a63b16e..76b37cb69 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4113,11 +4113,7 @@ void sqlite3AddGenerated(Parse*,Expr*,Token*);
void sqlite3EndTable(Parse*,Token*,Token*,u8,Select*);
int sqlite3ParseUri(const char*,const char*,unsigned int*,
sqlite3_vfs**,char**,char **);
-#ifdef SQLITE_HAS_CODEC
- int sqlite3CodecQueryParameters(sqlite3*,const char*,const char*);
-#else
-# define sqlite3CodecQueryParameters(A,B,C) 0
-#endif
+#define sqlite3CodecQueryParameters(A,B,C) 0
Btree *sqlite3DbNameToBtree(sqlite3*,const char*);
#ifdef SQLITE_UNTESTABLE