@@ -639,7 +639,7 @@ def create_table_sql(
639
639
column_order : Optional [List [str ]] = None ,
640
640
not_null : Iterable [str ] = None ,
641
641
defaults : Optional [Dict [str , Any ]] = None ,
642
- hash_id : Optional [Any ] = None ,
642
+ hash_id : Optional [str ] = None ,
643
643
extracts : Optional [Union [Dict [str , str ], List [str ]]] = None ,
644
644
) -> str :
645
645
"Returns the SQL ``CREATE TABLE`` statement for creating the specified table."
@@ -748,7 +748,7 @@ def create_table(
748
748
column_order : Optional [List [str ]] = None ,
749
749
not_null : Iterable [str ] = None ,
750
750
defaults : Optional [Dict [str , Any ]] = None ,
751
- hash_id : Optional [Any ] = None ,
751
+ hash_id : Optional [str ] = None ,
752
752
extracts : Optional [Union [Dict [str , str ], List [str ]]] = None ,
753
753
) -> "Table" :
754
754
"""
@@ -1046,7 +1046,7 @@ def __init__(
1046
1046
not_null : Iterable [str ] = None ,
1047
1047
defaults : Optional [Dict [str , Any ]] = None ,
1048
1048
batch_size : int = 100 ,
1049
- hash_id : Optional [Any ] = None ,
1049
+ hash_id : Optional [str ] = None ,
1050
1050
alter : bool = False ,
1051
1051
ignore : bool = False ,
1052
1052
replace : bool = False ,
@@ -1227,7 +1227,7 @@ def create(
1227
1227
column_order : Optional [List [str ]] = None ,
1228
1228
not_null : Iterable [str ] = None ,
1229
1229
defaults : Optional [Dict [str , Any ]] = None ,
1230
- hash_id : Optional [Any ] = None ,
1230
+ hash_id : Optional [str ] = None ,
1231
1231
extracts : Optional [Union [Dict [str , str ], List [str ]]] = None ,
1232
1232
) -> "Table" :
1233
1233
"""
0 commit comments