diff --git a/src/firebolt/async_db/_types.py b/src/firebolt/async_db/_types.py index 8b5c0b81a72..73f2c109ede 100644 --- a/src/firebolt/async_db/_types.py +++ b/src/firebolt/async_db/_types.py @@ -105,6 +105,7 @@ def Binary(value: str) -> str: class ARRAY: """Class for holding `array` column type information in Firebolt DB.""" + __name__ = "Array" _prefix = "array(" def __init__(self, subtype: Union[type, ARRAY, DECIMAL]): @@ -125,6 +126,7 @@ def __eq__(self, other: object) -> bool: class DECIMAL: """Class for holding `decimal` value information in Firebolt DB.""" + __name__ = "Decimal" _prefix = "Decimal(" def __init__(self, precision: int, scale: int):