Source DataSource for testing creates an in memory b-tree per "table". Is not thread safe.
| 55 | // Source DataSource for testing creates an in memory b-tree per "table". |
| 56 | // Is not thread safe. |
| 57 | type Source struct { |
| 58 | s *schema.Schema |
| 59 | tablenamelist []string |
| 60 | tables map[string]*membtree.StaticDataSource |
| 61 | raw map[string]string |
| 62 | } |
| 63 | |
| 64 | // Table converts the static csv-source into a schema.Conn source |
| 65 | type Table struct { |
nothing calls this directly
no outgoing calls
no test coverage detected