Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { CheckIfDatasetExists(ctx context.Context, dataset string) (exists bool) CheckIfTableExists(ctx context.Context, dataset, table string) (exists bool) CreateTable(ctx context.Context, dataset, table string, typeForSchema interface{}, partitionField string, waitReady bool) (err error) UpdateTableSchema(ctx context.Context, dataset, table string, typeForSchema interface{}) (err error) DeleteTable(ctx context.Context, dataset, table string) (err error) InsertMeasurement(ctx context.Context, dataset, table string, measurement contractsv1.Measurement) (err error) InitBigqueryTable(ctx context.Context, dataset, table string) (err error) }
Client is the interface for connecting to bigquery
Click to show internal directories.
Click to hide internal directories.