bruin-data / ingestr

ingestr is a CLI tool to copy data between any databases with a single command seamlessly.
https://bruin-data.github.io/ingestr/
MIT License
2.55k stars 59 forks source link

sqlite doesn't have schema #10

Closed iloveitaly closed 8 months ago

iloveitaly commented 8 months ago

Looks like a schema must be included in the table name schema_name.table_name when sourcing from a sqlite table, but sqlite does not have a schema unless a db is attached.

    raise ValueError("Table name must be in the format schema.<table>")
ValueError: Table name must be in the format schema.<table>

Thanks for the neat tool!