aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/mattn/go-sqlite3/tracecallback_noimpl.go
blob: c0a49e94132bde3863b4eae4547891c7f95c40ac (plain)
1
2
3
4
5
6
7
8
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")
}