(table string)
| 290 | } |
| 291 | |
| 292 | func (m *SchemaDb) tableForVariables(table string) (*schema.Table, error) { |
| 293 | |
| 294 | t := schema.NewTable(table) |
| 295 | t.AddField(schema.NewFieldBase("Variable_name", value.StringType, 64, "string")) |
| 296 | t.AddField(schema.NewFieldBase("Value", value.StringType, 64, "string")) |
| 297 | t.SetColumns(schema.ShowVariablesColumns) |
| 298 | return t, nil |
| 299 | } |
| 300 | |
| 301 | func (m *SchemaDb) tableForTables() (*schema.Table, error) { |
| 302 |
no test coverage detected