summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-04-16 21:23:20 -0400
committerChristopher Speller <crspeller@gmail.com>2018-04-16 18:23:20 -0700
commit3a4c7603b3ce35ab247b4dddaf7a2506375ba2c9 (patch)
treeb60b9b7dd321ba741946f4bd57556895c211c3ed /vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go
parentba6f9075c1fcc3fbfa5ba94e97df6a4dd9e70b50 (diff)
downloadchat-3a4c7603b3ce35ab247b4dddaf7a2506375ba2c9.tar.gz
chat-3a4c7603b3ce35ab247b4dddaf7a2506375ba2c9.tar.bz2
chat-3a4c7603b3ce35ab247b4dddaf7a2506375ba2c9.zip
MM-10020: avoid duplicating unique indexes (#8587)
* unit test TestGet(Search)Replica This adds partial, testing-focused support for SQLite, as well as removing some translated log messages that required initializing i18n just for testing. * avoid returning master twice when no replicas are configured * remove duplicate indexes * unit test GetAllConns
Diffstat (limited to 'vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go')
-rw-r--r--vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go
new file mode 100644
index 000000000..c7b3bfe52
--- /dev/null
+++ b/vendor/github.com/mattn/go-sqlite3/sqlite3_omit_load_extension.go
@@ -0,0 +1,23 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
+// +build sqlite_omit_load_extension
+
+package sqlite3
+
+/*
+#cgo CFLAGS: -DSQLITE_OMIT_LOAD_EXTENSION
+*/
+import "C"
+import (
+ "errors"
+)
+
+func (c *SQLiteConn) loadExtensions(extensions []string) error {
+ return errors.New("Extensions have been disabled for static builds")
+}
+
+func (c *SQLiteConn) LoadExtension(lib string, entry string) error {
+ return errors.New("Extensions have been disabled for static builds")
+}