SYMBOL INDEX (47 symbols across 11 files) FILE: cmd/mydumper/main.go function initFlags (line 29) | func initFlags() { function usage (line 33) | func usage() { function main (line 38) | func main() { FILE: cmd/myloader/main.go function initFlags (line 31) | func initFlags() { function usage (line 41) | func usage() { function main (line 46) | func main() { FILE: common/common.go function WriteFile (line 21) | func WriteFile(file string, data string) error { function ReadFile (line 43) | func ReadFile(file string) ([]byte, error) { function AssertNil (line 48) | func AssertNil(err error) { function EscapeBytes (line 55) | func EscapeBytes(bytes []byte) []byte { FILE: common/common_test.go function TestWriteReadFile (line 19) | func TestWriteReadFile(t *testing.T) { function TestEscapeBytes (line 41) | func TestEscapeBytes(t *testing.T) { FILE: common/dumper.go function writeMetaData (line 25) | func writeMetaData(args *config.Config) { function dumpDatabaseSchema (line 30) | func dumpDatabaseSchema(log *xlog.Log, conn *Connection, args *config.Co... function dumpTableSchema (line 40) | func dumpTableSchema(log *xlog.Log, conn *Connection, args *config.Confi... function dumpTable (line 50) | func dumpTable(log *xlog.Log, conn *Connection, args *config.Config, dat... function allTables (line 154) | func allTables(log *xlog.Log, conn *Connection, database string) []string { function allDatabases (line 165) | func allDatabases(log *xlog.Log, conn *Connection) []string { function filterDatabases (line 176) | func filterDatabases(log *xlog.Log, conn *Connection, filter *regexp.Reg... function Dumper (line 190) | func Dumper(log *xlog.Log, args *config.Config) { FILE: common/dumper_test.go function TestDumper (line 26) | func TestDumper(t *testing.T) { function TestDumperAll (line 151) | func TestDumperAll(t *testing.T) { function TestDumperMultiple (line 315) | func TestDumperMultiple(t *testing.T) { function TestDumperSimpleRegexp (line 480) | func TestDumperSimpleRegexp(t *testing.T) { function TestDumperComplexRegexp (line 654) | func TestDumperComplexRegexp(t *testing.T) { function TestDumperInvertMatch (line 828) | func TestDumperInvertMatch(t *testing.T) { FILE: common/loader.go type Files (line 28) | type Files struct function loadFiles (line 40) | func loadFiles(log *xlog.Log, dir string) *Files { function restoreDatabaseSchema (line 66) | func restoreDatabaseSchema(log *xlog.Log, dbs []string, conn *Connection) { function restoreTableSchema (line 81) | func restoreTableSchema(log *xlog.Log, overwrite bool, tables []string, ... function restoreTable (line 118) | func restoreTable(log *xlog.Log, table string, conn *Connection) int { function Loader (line 153) | func Loader(log *xlog.Log, args *config.Config) { FILE: common/loader_test.go function TestLoader (line 22) | func TestLoader(t *testing.T) { FILE: common/pool.go type Pool (line 22) | type Pool struct method Get (line 71) | func (p *Pool) Get() *Connection { method Put (line 81) | func (p *Pool) Put(conn *Connection) { method Close (line 92) | func (p *Pool) Close() { method getConns (line 103) | func (p *Pool) getConns() chan *Connection { type Connection (line 29) | type Connection struct method Execute (line 35) | func (conn *Connection) Execute(query string) error { method Fetch (line 40) | func (conn *Connection) Fetch(query string) (*sqltypes.Result, error) { method StreamFetch (line 45) | func (conn *Connection) StreamFetch(query string) (driver.Rows, error) { function NewPool (line 50) | func NewPool(log *xlog.Log, cap int, address string, user string, passwo... FILE: common/pool_test.go function TestPool (line 23) | func TestPool(t *testing.T) { FILE: config/config.go type Config (line 21) | type Config struct function ParseDumperConfig (line 50) | func ParseDumperConfig(file string) (*Config, error) { function LoadOptions (line 146) | func LoadOptions(cfg *ini.File, section string, optMap map[string]string...