Closed srohr closed 1 day ago
I'm seeing a failure in alembic revision --autogenerate due to leading whitespace in definition prior to the beginning of the SQL statement, i.e.
alembic revision --autogenerate
definition
(Pdb) definition.startswith("SELECT") False (Pdb) definition[0:50] ' SELECT amazon_dsp.line_item_creative_lo' (Pdb) definition.strip().startswith("SELECT") True
I'm seeing a failure in
alembic revision --autogenerate
due to leading whitespace indefinition
prior to the beginning of the SQL statement, i.e.