diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-03-05 02:37:15 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-03-05 02:37:15 +0900 |
commit | 3439fd20966c1bc672cea1173ed756bf145f05b2 (patch) | |
tree | cc681571a4da3f8c0a1ab7fe47831478837228bc /tracecallback.go | |
parent | not use underscore (diff) | |
download | golite-3439fd20966c1bc672cea1173ed756bf145f05b2.tar.gz golite-3439fd20966c1bc672cea1173ed756bf145f05b2.tar.xz |
fix test
Diffstat (limited to 'tracecallback.go')
-rw-r--r-- | tracecallback.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracecallback.go b/tracecallback.go index de1d504..a75f52a 100644 --- a/tracecallback.go +++ b/tracecallback.go @@ -357,7 +357,7 @@ func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool if pure { opts |= C.SQLITE_DETERMINISTIC } - rv := sqlite3_create_function(c.db, cname, C.int(stepNArgs), C.int(opts), newHandle(c, &ai), nil, C.stepTrampoline, C.doneTrampoline) + rv := sqlite3CreateFunction(c.db, cname, C.int(stepNArgs), C.int(opts), newHandle(c, &ai), nil, C.stepTrampoline, C.doneTrampoline) if rv != C.SQLITE_OK { return c.lastError() } |