From 722796b5d7ed07616906ea0206296702b148221e Mon Sep 17 00:00:00 2001 From: Arthur Prevot Date: Tue, 11 Jun 2024 02:45:58 +0200 Subject: [PATCH] comment --- yaetos/db_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yaetos/db_utils.py b/yaetos/db_utils.py index 050cf3d5..20dab524 100644 --- a/yaetos/db_utils.py +++ b/yaetos/db_utils.py @@ -118,6 +118,7 @@ def pandas_types_to_hive_types(df, format='glue'): :param df: pandas DataFrame :return: Dictionary or list of dictionaries of column names and their Hive data types """ + # TODO: add support for nested fields, just like in spark version type_mapping = { 'object': 'STRING', 'bool': 'BOOLEAN',