@@ -332,7 +332,7 @@ def create_empty_table( # type: ignore[override]
332
332
"""Create an empty target table.
333
333
334
334
Args:
335
- full_table_name : the target table name.
335
+ table_name : the target table name.
336
336
schema: the JSON schema for the new table.
337
337
primary_keys: list of key properties.
338
338
partition_keys: list of partition keys.
@@ -427,7 +427,7 @@ def _create_empty_column( # type: ignore[override]
427
427
"""Create a new column.
428
428
429
429
Args:
430
- full_table_name : The target table name.
430
+ table_name : The target table name.
431
431
column_name: The name of the new column.
432
432
sql_type: SQLAlchemy type engine to be used in creating the new column.
433
433
@@ -491,7 +491,7 @@ def _adapt_column_type( # type: ignore[override]
491
491
"""Adapt table column type to support the new JSON schema type.
492
492
493
493
Args:
494
- full_table_name : The target table name.
494
+ table_name : The target table name.
495
495
column_name: The target column name.
496
496
sql_type: The new SQLAlchemy type.
497
497
@@ -722,7 +722,7 @@ def _get_column_type( # type: ignore[override]
722
722
"""Get the SQL type of the declared column.
723
723
724
724
Args:
725
- full_table_name : The name of the table.
725
+ table_name : The name of the table.
726
726
column_name: The name of the column.
727
727
728
728
Returns:
0 commit comments