0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-07-26 04:09:48 +00:00
Files
go-sqlite3/tracecallback_noimpl.go
2016-09-08 01:13:15 +09:00

10 lines
198 B
Go

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