forked from mirror/go-sqlite3
add tracecallback_noimpl.go
This commit is contained in:
parent
e63ddcaa1a
commit
0cc5236296
|
@ -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")
|
||||||
|
}
|
Loading…
Reference in New Issue