aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTetsuya Morimoto <tetsuya.morimoto@gmail.com>2017-11-05 20:01:16 +0900
committerTetsuya Morimoto <tetsuya.morimoto@gmail.com>2017-11-05 20:01:16 +0900
commit9dddfd1328d9fc20cb77129d1524fabddb7d8859 (patch)
treeec81506c1d1a4fe0b236a81ab577ad10f4d88d91
parentupdate to call _sqlite3_limit as a wrapper instead of sqlite3_limit (diff)
downloadgolite-9dddfd1328d9fc20cb77129d1524fabddb7d8859.tar.gz
golite-9dddfd1328d9fc20cb77129d1524fabddb7d8859.tar.xz
fix to be able to build with GOTAGS=libsqlite3
-rw-r--r--sqlite3.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/sqlite3.go b/sqlite3.go
index a78d1c6..7e56410 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -120,6 +120,8 @@ void updateHookTrampoline(void*, int, char*, char*, sqlite3_int64);
# define SQLITE_LIMIT_VARIABLE_NUMBER 9
# define SQLITE_LIMIT_TRIGGER_DEPTH 10
# define SQLITE_LIMIT_WORKER_THREADS 11
+# else
+# define SQLITE_LIMIT_WORKER_THREADS 11
#endif
static int _sqlite3_limit(sqlite3* db, int limitId, int newLimit) {