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 2024/02/08 19:10:57 UTC

(arrow-adbc) branch main updated: docs: list SQLite/libpq versions in docs (#1536)

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 0b103c83 docs: list SQLite/libpq versions in docs (#1536)
0b103c83 is described below

commit 0b103c831dff0db7796ba35838a757c194d5b239
Author: David Li <li...@gmail.com>
AuthorDate: Thu Feb 8 14:10:52 2024 -0500

    docs: list SQLite/libpq versions in docs (#1536)
    
    Fixes #1463.
---
 .env                              | 4 +++-
 docs/source/driver/postgresql.rst | 9 +++++++++
 docs/source/driver/sqlite.rst     | 7 +++++++
 3 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/.env b/.env
index 30829d53..90ff405b 100644
--- a/.env
+++ b/.env
@@ -37,5 +37,7 @@ ARROW_MAJOR_VERSION=14
 DOTNET=7.0
 
 # Used through docker-compose.yml and serves as the default version for the
-# ci/scripts/install_vcpkg.sh script. Keep in sync with apache/arrow .env
+# ci/scripts/install_vcpkg.sh script. Keep in sync with apache/arrow .env.
+# When updating, also update the docs, which list the version of libpq/SQLite
+# that vcpkg (and hence our wheels) ship
 VCPKG="501db0f17ef6df184fcdbfbe0f87cde2313b6ab1"
diff --git a/docs/source/driver/postgresql.rst b/docs/source/driver/postgresql.rst
index c724a2c1..c76534d2 100644
--- a/docs/source/driver/postgresql.rst
+++ b/docs/source/driver/postgresql.rst
@@ -319,3 +319,12 @@ being read or written.
                 adjusted to the PostgreSQL epoch (2000-01-01) and so may
                 overflow/underflow; an error will be returned if this would be
                 the case.
+
+Software Versions
+=================
+
+For Python wheels, the shipped version of the PostgreSQL client libraries is
+15.2.  For conda-forge packages, the version of libpq is the same as the
+version of libpq in your Conda environment.
+
+The PostgreSQL driver is tested against PostgreSQL versions 11 through 16.
diff --git a/docs/source/driver/sqlite.rst b/docs/source/driver/sqlite.rst
index 96bd7bbd..27df9c86 100644
--- a/docs/source/driver/sqlite.rst
+++ b/docs/source/driver/sqlite.rst
@@ -273,3 +273,10 @@ Driver-specific options:
 ``adbc.sqlite.query.batch_rows``
     The size of batches to read.  Hence, this also controls how many
     rows are read to infer the Arrow type.
+
+Software Versions
+=================
+
+For Python wheels, the shipped version of SQLite is 3.40.1.  For conda-forge
+packages, the version of sqlite is the same as the version of sqlite in your
+Conda environment.