mirror of https://github.com/mattn/go-sqlite3.git
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:
parent
f3a14987e0
commit
1226270907
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
package sqlite3
|
package sqlite3
|
||||||
|
|
||||||
import "errors"
|
|
||||||
|
|
||||||
// Trace... constants identify the possible events causing callback invocation.
|
// Trace... constants identify the possible events causing callback invocation.
|
||||||
// Values are same as the corresponding SQLite Trace Event Codes.
|
// Values are same as the corresponding SQLite Trace Event Codes.
|
||||||
const (
|
const (
|
||||||
|
@ -44,12 +42,3 @@ type TraceConfig struct {
|
||||||
EventMask uint
|
EventMask uint
|
||||||
WantExpandedSQL bool
|
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")
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue