Documentation
¶
Index ¶
- func NewColumnCheckOperator(manager config.ConnectionGetter) *ansisql.ColumnCheckOperator
- func NewMaterializer(fullRefresh bool) *pipeline.Materializer
- type AcceptedValuesCheck
- type BasicOperator
- type Client
- func (db *Client) GetDatabaseSummary(ctx context.Context) (*ansisql.DBDatabase, error)
- func (db *Client) GetIngestrURI() (string, error)
- func (db *Client) Ping(ctx context.Context) error
- func (db *Client) RunQueryWithoutResult(ctx context.Context, query *query.Query) error
- func (db *Client) Select(ctx context.Context, query *query.Query) ([][]interface{}, error)
- func (db *Client) SelectWithSchema(ctx context.Context, queryObj *query.Query) (*query.QueryResult, error)
- type Config
- type OracleClient
- type PatternCheck
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewColumnCheckOperator ¶ added in v0.11.561
func NewColumnCheckOperator(manager config.ConnectionGetter) *ansisql.ColumnCheckOperator
func NewMaterializer ¶ added in v0.11.561
func NewMaterializer(fullRefresh bool) *pipeline.Materializer
Types ¶
type AcceptedValuesCheck ¶ added in v0.11.561
type AcceptedValuesCheck struct {
// contains filtered or unexported fields
}
func (*AcceptedValuesCheck) Check ¶ added in v0.11.561
func (c *AcceptedValuesCheck) Check(ctx context.Context, ti *scheduler.ColumnCheckInstance) error
type BasicOperator ¶ added in v0.11.561
type BasicOperator struct {
// contains filtered or unexported fields
}
func NewBasicOperator ¶ added in v0.11.561
func NewBasicOperator(conn config.ConnectionGetter, extractor query.QueryExtractor, materializer materializer, parser *sqlparser.SQLParser) *BasicOperator
func (BasicOperator) Run ¶ added in v0.11.561
func (o BasicOperator) Run(ctx context.Context, ti scheduler.TaskInstance) error
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) GetDatabaseSummary ¶ added in v0.11.275
func (*Client) GetIngestrURI ¶
func (*Client) RunQueryWithoutResult ¶ added in v0.11.275
func (*Client) SelectWithSchema ¶ added in v0.11.275
type Config ¶
type Config struct {
Username string
Password string
Host string
Port string
ServiceName string
SID string
Role string
SSL bool
SSLVerify bool
PrefetchRows int
TraceFile string
Wallet string
}
func (*Config) GetIngestrURI ¶
type OracleClient ¶ added in v0.11.561
type OracleClient interface {
RunQueryWithoutResult(ctx context.Context, query *query.Query) error
}
OracleClient is the interface for executing queries against Oracle. Note: table and column names are used as-is (unquoted uppercase identifiers). If your Oracle objects were created with quoted lowercase names, you must ensure asset names match the exact case used during creation.
type PatternCheck ¶ added in v0.11.561
type PatternCheck struct {
// contains filtered or unexported fields
}
func (*PatternCheck) Check ¶ added in v0.11.561
func (c *PatternCheck) Check(ctx context.Context, ti *scheduler.ColumnCheckInstance) error
Click to show internal directories.
Click to hide internal directories.