Documentation
¶
Index ¶
- func CallGRPC(endpoint string, fullMethod string, req *grpc.Request) (*grpc.Response, error)
- func CallHTTP(endpointURL string, method libhttp.Method, req *libhttp.Request) (*libhttp.Response, error)
- func Dump(ctx context.Context, db libdb.DB, tableNames []string, ...) (tables.DumpTables, error)
- func Init(ctx context.Context, db libdb.DB, jsonTables tables.InitTables, ...) error
- type CompareResult
- type DatabaseDriver
- type RowClearer
- type RowCreator
- type RowLister
- type SchemaGetter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Dump ¶
func Dump( ctx context.Context, db libdb.DB, tableNames []string, schemaGetter SchemaGetter, rowLister RowLister, ) (tables.DumpTables, error)
func Init ¶
func Init(ctx context.Context, db libdb.DB, jsonTables tables.InitTables, schemaGetter SchemaGetter, rowClearer RowClearer, rowCreator RowCreator, ) error
Types ¶
type CompareResult ¶
type CompareResult string
const ( CompareResultSupersetMatch CompareResult = "SupersetMatch" CompareResultFullMatch CompareResult = "FullMatch" CompareResultNoMatch CompareResult = "NoMatch" CompareResultError CompareResult = "Error" )
type DatabaseDriver ¶
type DatabaseDriver struct { Name string DB db.DB RowLister RowLister RowClearer RowClearer RowCreator RowCreator SchemaGetter SchemaGetter }
func (*DatabaseDriver) Close ¶
func (d *DatabaseDriver) Close() error
func (*DatabaseDriver) Open ¶
func (d *DatabaseDriver) Open(connectionString string) error
type RowClearer ¶
type RowCreator ¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.