aboutsummaryrefslogtreecommitdiff
path: root/vtable_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactoringYasuhiro Matsumoto2017-03-051-154/+0
|
* remove dependency of assertYasuhiro Matsumoto2017-03-051-14/+36
|
* [vtable] Rename Context to SQLiteContextConor Branagan2017-03-041-1/+1
| | | | To not conflict with core "context" package naming.
* Add Go API for virtual tablesConor Branagan2017-03-041-0/+132
See https://www.sqlite.org/vtab.html for more details. This work was started from https://github.com/gwenn/gosqlite/blob/master/vtab.{c,go} and adds: - Porting the API to go-sqlite3 APIs. - Support for >= Go 1.6 without requiring the `cgocheck` flag to be changed. - Filling out the unfinished callback functions for the `Vtable` struct. - A simple `Context` API layer for ease of use when adding modules. Tests are included.