Pivot virtual table.

This commit is contained in:
Nuno Cruces
2023-12-06 15:39:26 +00:00
parent 8b45cac16b
commit 089a0c0670
14 changed files with 577 additions and 74 deletions

View File

@@ -119,7 +119,7 @@ func (c *cursor) Filter(idxNum int, idxStr string, arg ...sqlite3.Value) error {
return nil
}
func indexable(v reflect.Value) (_ reflect.Value, err error) {
func indexable(v reflect.Value) (reflect.Value, error) {
if v.Kind() == reflect.Slice {
return v, nil
}