(ctx context.Context, val string)
| 157 | } |
| 158 | |
| 159 | func (s *SQLTable) LookupMulti(ctx context.Context, val string) ([]string, error) { |
| 160 | return s.wrapped.LookupMulti(ctx, val) |
| 161 | } |
| 162 | |
| 163 | func (s *SQLTable) Keys() ([]string, error) { |
| 164 | return s.wrapped.Keys() |
nothing calls this directly
no test coverage detected