pankajkoti commented on issue #32993: URL: https://github.com/apache/airflow/issues/32993#issuecomment-1664231776
Yes, it will affect other providers as the same base class/hook is used by others. Looks like the `fetch_all_handler` gets used in the `get_records` method here https://github.com/apache/airflow/blob/main/airflow/providers/common/sql/hooks/sql.py#L255 in the base class DbApiHook. So you can override this `get_records` method in Vertica hook and pass your custom handler there. You can define the custom handler in the same Vertica hook module. It just like normal method overriding. I have not used Vertica. But if you feel that is what is needed, please open a PR with that change and someone will be able to review your change. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
