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 2023/01/19 21:17:01 UTC

[arrow-adbc] branch main updated (c19bf19 -> 53005e1)

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

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


    from c19bf19  chore(go): bump to Arrow HEAD (#360)
     add 53005e1  feat(python): add Flight SQL driver using Go library (#355)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/native-unix.yml                  | 10 +++++
 .github/workflows/packaging.yml                    | 18 ++++++++
 .isort.cfg                                         |  2 +-
 ci/docker/python-wheel-manylinux.dockerfile        |  3 ++
 ci/scripts/go_build.sh                             |  7 ++++
 ci/scripts/python_build.sh                         |  9 +++-
 ci/scripts/python_test.sh                          |  5 +++
 ci/scripts/python_util.sh                          |  9 +++-
 ci/scripts/python_wheel_windows_build.bat          |  9 +++-
 ci/scripts/python_wheel_windows_test.bat           |  4 +-
 docker-compose.yml                                 |  6 ++-
 docs/source/driver/{cpp => go}/flight_sql.rst      | 17 ++++++--
 go/adbc/driver/flightsql/flightsql_adbc.go         | 48 ++++++++++++++--------
 go/adbc/driver/flightsql/flightsql_adbc_test.go    |  3 +-
 go/adbc/pkg/Makefile                               |  4 +-
 .../.gitignore                                     |  4 +-
 .../LICENSE.txt                                    |  0
 .../MANIFEST.in                                    |  2 +-
 .../NOTICE.txt                                     |  0
 .../README.md                                      | 14 +++----
 .../adbc_driver_flightsql}/__init__.py             | 23 ++++++++---
 .../adbc_driver_flightsql}/_static_version.py      |  0
 .../adbc_driver_flightsql}/_version.py             |  0
 .../adbc_driver_flightsql}/dbapi.py                | 29 ++++++++++---
 .../pyproject.toml                                 |  8 ++--
 .../setup.py                                       | 11 +++--
 .../tests/__init__.py                              |  0
 .../tests/conftest.py}                             | 31 +++++++-------
 .../adbc_driver_flightsql/tests/test_dbapi.py      | 13 ++----
 .../tests/test_lowlevel.py                         | 16 ++------
 .../adbc_driver_sqlite/adbc_driver_sqlite/dbapi.py |  2 +-
 31 files changed, 207 insertions(+), 100 deletions(-)
 rename docs/source/driver/{cpp => go}/flight_sql.rst (97%)
 copy python/{adbc_driver_postgresql => adbc_driver_flightsql}/.gitignore (93%)
 copy python/{adbc_driver_manager => adbc_driver_flightsql}/LICENSE.txt (100%)
 copy python/{adbc_driver_sqlite => adbc_driver_flightsql}/MANIFEST.in (93%)
 copy python/{adbc_driver_manager => adbc_driver_flightsql}/NOTICE.txt (100%)
 copy python/{adbc_driver_sqlite => adbc_driver_flightsql}/README.md (75%)
 copy python/{adbc_driver_sqlite/adbc_driver_sqlite => adbc_driver_flightsql/adbc_driver_flightsql}/__init__.py (64%)
 copy python/{adbc_driver_manager/adbc_driver_manager => adbc_driver_flightsql/adbc_driver_flightsql}/_static_version.py (100%)
 copy python/{adbc_driver_manager/adbc_driver_manager => adbc_driver_flightsql/adbc_driver_flightsql}/_version.py (100%)
 copy python/{adbc_driver_sqlite/adbc_driver_sqlite => adbc_driver_flightsql/adbc_driver_flightsql}/dbapi.py (79%)
 copy python/{adbc_driver_sqlite => adbc_driver_flightsql}/pyproject.toml (88%)
 copy python/{adbc_driver_postgresql => adbc_driver_flightsql}/setup.py (86%)
 copy python/{adbc_driver_postgresql => adbc_driver_flightsql}/tests/__init__.py (100%)
 copy python/{adbc_driver_sqlite/tests/test_lowlevel.py => adbc_driver_flightsql/tests/conftest.py} (66%)
 copy ci/scripts/java_test.sh => python/adbc_driver_flightsql/tests/test_dbapi.py (84%)
 mode change 100755 => 100644
 copy python/{adbc_driver_sqlite => adbc_driver_flightsql}/tests/test_lowlevel.py (75%)