forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debugschema.go
45 lines (40 loc) · 1.07 KB
/
debugschema.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2015, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package framework
import (
"encoding/json"
"fmt"
"net/http"
)
// Table is a subset of schema.Table.
// TODO(sougou): I'm getting a json parsing error
// on the 'Default' field of schema.TabletColumn. Otherwise,
// we should just be able to decode the json output into a schema.Table.
type Table struct {
Name string
Columns []TableColumn
CacheType int
}
// TableColumn contains info about a table's column.
type TableColumn struct {
Name string
Category int
IsAuto bool
}
// DebugSchema parses /debug/schema and returns
// a map of the tables keyed by the table name.
func DebugSchema() map[string]Table {
out := make(map[string]Table)
var list []Table
response, err := http.Get(fmt.Sprintf("%s/debug/schema", ServerAddress))
if err != nil {
return out
}
defer response.Body.Close()
_ = json.NewDecoder(response.Body).Decode(&list)
for _, table := range list {
out[table.Name] = table
}
return out
}