add tracecallback_noimpl.go

type
Yasuhiro Matsumoto 2016-09-08 01:13:15 +09:00
parent e63ddcaa1a
commit 0cc5236296
1 changed files with 9 additions and 0 deletions

9
tracecallback_noimpl.go Normal file
View File

@ -0,0 +1,9 @@
// +build !trace
package sqlite3
import "errors"
func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool) error {
return errors.New("This feature is not implemented")
}