diff options
author | Conor Branagan <conor.branagan@gmail.com> | 2017-03-04 18:15:00 -0500 |
---|---|---|
committer | Conor Branagan <conor.branagan@gmail.com> | 2017-03-04 18:37:04 -0500 |
commit | 9efa963d05cac8b780d1cb3abbd8493a94f1db82 (patch) | |
tree | 6c075e6971ff66ff98a6c6e8e31f5509de68aeb6 /vtable_test.go | |
parent | [vtable] Add pure Go example of GitHub repo vtable. (diff) | |
download | golite-9efa963d05cac8b780d1cb3abbd8493a94f1db82.tar.gz golite-9efa963d05cac8b780d1cb3abbd8493a94f1db82.tar.xz |
[vtable] Rename Context to SQLiteContext
To not conflict with core "context" package naming.
Diffstat (limited to 'vtable_test.go')
-rw-r--r-- | vtable_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtable_test.go b/vtable_test.go index 4c7efcb..9b97927 100644 --- a/vtable_test.go +++ b/vtable_test.go @@ -94,7 +94,7 @@ func (vc *testVTabCursor) EOF() bool { return vc.index >= len(vc.vTab.intarray) } -func (vc *testVTabCursor) Column(c *Context, col int) error { +func (vc *testVTabCursor) Column(c *SQLiteContext, col int) error { if col != 0 { return fmt.Errorf("column index out of bounds: %d", col) } |