| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """ |
||
| 13 | class SqlLoaderWriter(Writer): |
||
|
1 ignored issue
–
show
|
|||
| 14 | """ |
||
| 15 | Abstract parent class for writing rows to a destination. |
||
| 16 | """ |
||
| 17 | |||
| 18 | # ------------------------------------------------------------------------------------------------------------------ |
||
| 19 | @abc.abstractmethod |
||
| 20 | def get_bulk_load_sql(self): |
||
| 21 | """ |
||
| 22 | Returns a SQL statement for bulk loading the data into the database. |
||
| 23 | |||
| 24 | :rtype: str |
||
| 25 | """ |
||
| 26 | raise NotImplementedError() |
||
| 27 | |||
| 29 |