aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
diff options
context:
space:
mode:
authorFelix Hanley <felix@userspace.com.au>2017-06-09 08:40:39 +0000
committerFelix Hanley <felix@userspace.com.au>2017-06-09 08:40:39 +0000
commit1b97478a776e3ab2610d3b0358ae3d4fafaadd09 (patch)
tree37b3843f001b81f0be89b0efafb07949f8d267d7 /vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
downloaddhtsearch-1b97478a776e3ab2610d3b0358ae3d4fafaadd09.tar.gz
dhtsearch-1b97478a776e3ab2610d3b0358ae3d4fafaadd09.tar.bz2
Where it's at.
As I have been running it. TODO: - web front-end and search - rate limiting - statistics - routing table logic - profiling (CPU mainly, mem seems ok)
Diffstat (limited to 'vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go')
-rw-r--r--vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go b/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
new file mode 100644
index 0000000..f270415
--- /dev/null
+++ b/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
@@ -0,0 +1,10 @@
+// +build !trace
+
+package sqlite3
+
+import "errors"
+
+// RegisterAggregator register the aggregator.
+func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool) error {
+ return errors.New("This feature is not implemented")
+}