@@ -329,7 +329,7 @@ def create_empty_table( # type: ignore[override]
329
329
"""Create an empty target table.
330
330
331
331
Args:
332
- full_table_name : the target table name.
332
+ table_name : the target table name.
333
333
schema: the JSON schema for the new table.
334
334
primary_keys: list of key properties.
335
335
partition_keys: list of partition keys.
@@ -424,7 +424,7 @@ def _create_empty_column( # type: ignore[override]
424
424
"""Create a new column.
425
425
426
426
Args:
427
- full_table_name : The target table name.
427
+ table_name : The target table name.
428
428
column_name: The name of the new column.
429
429
sql_type: SQLAlchemy type engine to be used in creating the new column.
430
430
@@ -488,7 +488,7 @@ def _adapt_column_type( # type: ignore[override]
488
488
"""Adapt table column type to support the new JSON schema type.
489
489
490
490
Args:
491
- full_table_name : The target table name.
491
+ table_name : The target table name.
492
492
column_name: The target column name.
493
493
sql_type: The new SQLAlchemy type.
494
494
@@ -719,7 +719,7 @@ def _get_column_type( # type: ignore[override]
719
719
"""Get the SQL type of the declared column.
720
720
721
721
Args:
722
- full_table_name : The name of the table.
722
+ table_name : The name of the table.
723
723
column_name: The name of the column.
724
724
725
725
Returns:
0 commit comments