From 6f8019f5829189deea34590e9c09667631abe5d3 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Mon, 16 Jun 2025 11:30:49 -0500 Subject: [PATCH] bug fix --- info/__init__.py | 2 +- transport/warehouse/iceberg.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/info/__init__.py b/info/__init__.py index 3e6c1ca..19b0e10 100644 --- a/info/__init__.py +++ b/info/__init__.py @@ -1,6 +1,6 @@ __app_name__ = 'data-transport' __author__ = 'The Phi Technology' -__version__= '2.2.14' +__version__= '2.2.16' __email__ = "info@the-phi.com" __edition__= 'community' __license__=f""" diff --git a/transport/warehouse/iceberg.py b/transport/warehouse/iceberg.py index 4e73c62..3def181 100644 --- a/transport/warehouse/iceberg.py +++ b/transport/warehouse/iceberg.py @@ -74,7 +74,7 @@ class Iceberg : """ sql query/command to run against apache iceberg """ - return self._session.sql(_query) + return self._session.sql(_query).toPandas() def has (self,**_args): try: _prefix = self._getPrefix(**_args)