This commit is contained in:
Выдрин Сергей
2025-09-05 02:19:14 +03:00
parent a075728557
commit 5665db0236

7
user1/testpostgre.py Normal file
View File

@@ -0,0 +1,7 @@
from airflow.providers.postgres.operators.postgres import PostgresOperator
task = PostgresOperator(
task_id='test_query',
postgres_conn_id='my_postgres',
sql='SELECT 1;'
)