removed two functions that aren't implemented that are causing build

errors. See https://github.com/mattn/go-sqlite3/issues/372
This commit is contained in:
Mark Bates 2017-01-18 16:49:34 +01:00
parent f3a14987e0
commit 1226270907
1 changed files with 0 additions and 11 deletions

View File

@ -2,8 +2,6 @@
package sqlite3
import "errors"
// Trace... constants identify the possible events causing callback invocation.
// Values are same as the corresponding SQLite Trace Event Codes.
const (
@ -44,12 +42,3 @@ type TraceConfig struct {
EventMask uint
WantExpandedSQL bool
}
// RegisterAggregator register the aggregator.
func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool) error {
return errors.New("This feature is not implemented")
}
func (c *SQLiteConn) SetTrace(requested *TraceConfig) error {
return errors.New("This feature is not implemented")
}