in migration_toolkit/sql_generators/fetch_bigquery_table_ddl/fetch_bigquery_table_ddl.py [0:0]
def fetch_table_schema(self):
sql = FETCH_BIGQUERY_TABLE_DDL_SQL_TEMPLATE.format(
project_id=self.project_id, dataset=self.dataset, table=self.table
)
logger.info(f"Generated table schema SQL: {sql}")
self._write_to_file(sql)