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 0450d522 test(python): Fix polars DeprecationWarning in tests (#1366)
0450d522 is described below

commit 0450d52216ae2d0b306fc37979b1e29072845da0
Author: William Ayd <[email protected]>
AuthorDate: Tue Dec 19 08:46:58 2023 -0500

    test(python): Fix polars DeprecationWarning in tests (#1366)
---
 python/adbc_driver_postgresql/tests/test_polars.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/adbc_driver_postgresql/tests/test_polars.py 
b/python/adbc_driver_postgresql/tests/test_polars.py
index a0295211..218a6d8b 100644
--- a/python/adbc_driver_postgresql/tests/test_polars.py
+++ b/python/adbc_driver_postgresql/tests/test_polars.py
@@ -73,7 +73,7 @@ def test_polars_write_database(postgres_uri: str, df: 
"polars.DataFrame") -> Non
             connection=postgres_uri,
             # TODO(apache/arrow-adbc#541): polars doesn't map the semantics
             # properly here, and one of their modes isn't supported
-            if_exists="replace",
+            if_table_exists="replace",
             engine="adbc",
         )
     finally:

Reply via email to