diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2024-01-25 22:36:00 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2024-01-25 22:55:22 +0900 |
commit | c91bca4fb499831d1bf62fb2b3019338d5a3eb41 (patch) | |
tree | eb8952f7b7c394790c620a65c20c74189f1fcb47 /_example/vtable/vtable.go | |
parent | Fix musl build (#1164) (diff) | |
download | golite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.gz golite-c91bca4fb499831d1bf62fb2b3019338d5a3eb41.tar.xz |
update go version to 1.19
Diffstat (limited to '_example/vtable/vtable.go')
-rw-r--r-- | _example/vtable/vtable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_example/vtable/vtable.go b/_example/vtable/vtable.go index 10d12a9..c65535b 100644 --- a/_example/vtable/vtable.go +++ b/_example/vtable/vtable.go @@ -93,7 +93,7 @@ func (vc *ghRepoCursor) Column(c *sqlite3.SQLiteContext, col int) error { return nil } -func (vc *ghRepoCursor) Filter(idxNum int, idxStr string, vals []interface{}) error { +func (vc *ghRepoCursor) Filter(idxNum int, idxStr string, vals []any) error { vc.index = 0 return nil } |