You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/10/21 18:07:31 UTC

[GitHub] [airflow] potix2 commented on a change in pull request #9246: Add truncate table (before copy) option to S3ToRedshiftOperator

potix2 commented on a change in pull request #9246:
URL: https://github.com/apache/airflow/pull/9246#discussion_r509535013



##########
File path: airflow/providers/amazon/aws/transfers/s3_to_redshift.py
##########
@@ -87,29 +93,35 @@ def __init__(
         self.verify = verify
         self.copy_options = copy_options or []
         self.autocommit = autocommit
+        self.truncate_table = truncate_table
+        self._s3_hook = None
+        self._postgres_hook = None
 
-    def execute(self, context) -> None:
-        postgres_hook = PostgresHook(postgres_conn_id=self.redshift_conn_id)
-        s3_hook = S3Hook(aws_conn_id=self.aws_conn_id, verify=self.verify)
-        credentials = s3_hook.get_credentials()
+    def execute(self, context):

Review comment:
       It's better to keep the type hint for the returned value.
   ```suggestion
       def execute(self, context) -> None:
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org