You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/11/08 22:29:12 UTC

[arrow-adbc] branch main updated: chore(c/driver-manager): fix typo (#159)

This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 9e972cf  chore(c/driver-manager): fix typo (#159)
9e972cf is described below

commit 9e972cf12fd60e786ff5bf5022d577fe5167082e
Author: Judah Rand <17...@users.noreply.github.com>
AuthorDate: Tue Nov 8 22:29:07 2022 +0000

    chore(c/driver-manager): fix typo (#159)
---
 python/adbc_driver_manager/adbc_driver_manager/dbapi.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/adbc_driver_manager/adbc_driver_manager/dbapi.py b/python/adbc_driver_manager/adbc_driver_manager/dbapi.py
index d18df6e..0748a79 100644
--- a/python/adbc_driver_manager/adbc_driver_manager/dbapi.py
+++ b/python/adbc_driver_manager/adbc_driver_manager/dbapi.py
@@ -430,7 +430,7 @@ class Cursor(_Closeable):
         """
         if self._results is None:
             raise ProgrammingError(
-                "Cannot fetch_df() before execute()",
+                "Cannot fetch_arrow_table() before execute()",
                 status_code=_lib.AdbcStatusCode.INVALID_STATE,
             )
         return self._results.fetch_arrow_table()