## Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending#"""This module hosts helper functions for use with the Deephaven Python Client API."""importpyarrowaspafrom.dherrorimportDHErrorfrom._arrowimportmap_arrow_type
[docs]defis_deephaven_compatible(data_type:pa.DataType)->bool:"""Checks if the arrow data type is supported by Deephaven."""try:dh_type=map_arrow_type(data_type)returnTrueexceptDHError:returnFalse