0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-05-29 20:00:43 +00:00
Files
go-sqlite3/tracecallback_noimpl.go
Yasuhiro Matsumoto 0d1d1a644e go vet && golint
2016-11-05 00:40:06 +09:00

11 lines
245 B
Go

// +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")
}