data_validation/partition_builder.py [273:281]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                key_column = table.__getattr__(keys[0])
                # Due to issue 1474, the type can be datetime.datetime or datetime.date
                value = (
                    values[0].date()
                    if key_column.type().is_date()
                    and isinstance(values[0], datetime.datetime)
                    else values[0]
                )
                if len(keys) == 1:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



data_validation/partition_builder.py [290:299]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                key_column = table.__getattr__(keys[0])
                # Due to issue 1474, the type can be datetime.datetime or datetime.date
                value = (
                    values[0].date()
                    if key_column.type().is_date()
                    and isinstance(values[0], datetime.datetime)
                    else values[0]
                )

                if len(keys) == 1:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



