tests.system.providers.amazon.aws.example_redshift_data_execute_sql

Module Contents

Functions

output_query_results(statement_id)

Attributes

ENV_ID

DAG_ID

REDSHIFT_CLUSTER_IDENTIFIER

REDSHIFT_DATABASE

REDSHIFT_DATABASE_USER

REDSHIFT_QUERY

POLL_INTERVAL

task_query

test_run

tests.system.providers.amazon.aws.example_redshift_data_execute_sql.ENV_ID[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.DAG_ID = example_redshift_data_execute_sql[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.REDSHIFT_CLUSTER_IDENTIFIER[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.REDSHIFT_DATABASE[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.REDSHIFT_DATABASE_USER[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.REDSHIFT_QUERY = Multiline-String[source]
Show Value
1SELECT table_schema,
2       table_name
3FROM information_schema.tables
4WHERE table_schema NOT IN ('information_schema', 'pg_catalog')
5      AND table_type = 'BASE TABLE'
6ORDER BY table_schema,
7         table_name;
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.POLL_INTERVAL = 10[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.output_query_results(statement_id)[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.task_query[source]
tests.system.providers.amazon.aws.example_redshift_data_execute_sql.test_run[source]

Was this entry helpful?