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