Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions airflow/hooks/dbapi_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,17 @@ def _serialize_cell(cell):
else:
return str(cell)

def bulk_dump(self, table, tmp_file):
"""
Dumps a database table into a tab-delimited file

:param table: The name of the source table
:type table: str
:param tmp_file: The path of the target file
:type tmp_file: str
"""
raise NotImplementedError()

def bulk_load(self, table, tmp_file):
"""
Loads a tab-delimited file into a database table
Expand Down