()
| 93 | func (m *JsonSource) Setup(*schema.Schema) error { return nil } |
| 94 | func (m *JsonSource) Tables() []string { return []string{m.table} } |
| 95 | func (m *JsonSource) Columns() []string { return m.columns } |
| 96 | func (m *JsonSource) CreateIterator() schema.Iterator { return m } |
| 97 | func (m *JsonSource) Table(tableName string) (*schema.Table, error) { |
| 98 | if m.tbl != nil { |