Function
loadTableConfig
(schemaConfig *common.DataSource, tableName string)
Source from the content-addressed store, hash-verified
| 1279 | } |
| 1280 | |
| 1281 | func loadTableConfig(schemaConfig *common.DataSource, tableName string) *common.Table { |
| 1282 | newtb := &common.Table{} |
| 1283 | |
| 1284 | newtb.TableSchema = schemaConfig.TableSchema |
| 1285 | newtb.TableName = tableName |
| 1286 | schemaConfig.Tables = append(schemaConfig.Tables, newtb) |
| 1287 | return newtb |
| 1288 | } |
| 1289 | |
| 1290 | func (e *ExtractorOracle) findSchemaConfig(schemaName string) *common.DataSource { |
| 1291 | if schemaName == "" { |
Tested by
no test coverage detected