From 67ebdb0f3b709e2b3f68739949a7429308c00013 Mon Sep 17 00:00:00 2001 From: David Li Date: Tue, 25 Jun 2024 08:45:29 -0400 Subject: [PATCH] Update docs/source/python/recipe/postgresql_pandas.py Co-authored-by: William Ayd --- docs/source/python/recipe/postgresql_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/python/recipe/postgresql_pandas.py b/docs/source/python/recipe/postgresql_pandas.py index 4edf4d93e2..e0ca56a95a 100644 --- a/docs/source/python/recipe/postgresql_pandas.py +++ b/docs/source/python/recipe/postgresql_pandas.py @@ -18,7 +18,7 @@ # RECIPE STARTS HERE #: ADBC is integrated into pandas_, a popular dataframe library. Pandas can -#: use ADBC to read the results of SQL queries against PostgreSQL and other +#: use ADBC to exchange data with PostgreSQL and other #: databases. Compared to using SQLAlchemy or other options, using ADBC with #: Pandas can have better performance, such as by avoiding excess conversions #: to and from Python objects.