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

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


    omit e9795d3a feat(go/adbc): implement ADBC 1.1.0 features (#700)
    omit 5d6586b0 feat(c): fix typos in 1.1.0, update driver manager (#857)
    omit b9262d58 feat(format): add additional features to 1.1.0 spec (#765)
    omit 0f75d324 test(c): add backwards compatibility tests for 1.1.0/1.0.0 
(#698)
    omit 158e8ef3 feat(format): remove unnecessary padding (#731)
    omit 94b35a73 feat(format): introduce ADBC API revision 1.1.0 (#692)
     add 9488aec3 feat(c/driver/postgresql): Better type error messages (#860)
     add 1465aba0 feat(c/driver/postgresql): Int8 support (#858)
     add b8c98382 feat(c/driver_manager,go/adbc,python): trim down error 
messages (#866)
     add f64da3ca fix(go/adbc/driver/snowflake): handle result sets without 
Arrow data (#864)
     add fd240825 feat(c/driver/postgresql): Timestamp write support (#861)
     add 7bacf87b chore(r): Update CI and READMEs for latest pkgbuild release 
(#869)
     add 8251403d fix(go/adbc): fix crash on map type (#854)
     add e8263f50 docs: Ensure Python and R install instructions list all 
drivers (#877)
     add 96f92463 feat(c/driver/postgresql): Implement streaming/chunked output 
(#870)
     add 16ca8e08 fix(c/validation): Fix ASAN-detected leak (#879)
     add 14a2f6e7 refactor(c/driver/postgresql): Simplify current database 
querying (#880)
     add 4fc8057a test(python/adbc_driver_postgresql): fix Polars integration 
test (#884)
     add de124fb4 fix(go/adbc/driver/snowflake): fix failing integration tests 
(#888)
     add 4b81d779 feat(c/driver/postgresql): TimestampTz write (#868)
     add 0624550c fix(go/adbc/driver/snowflake): Fix integration tests by 
fixing timestamp handling (#889)
     add b4b5a37a feat(python/adbc_driver_postgresql): add PostgreSQL options 
enum (#886)
     new 734682b4 feat(format): introduce ADBC API revision 1.1.0 (#692)
     new 4c86ba28 feat(format): remove unnecessary padding (#731)
     new 7b864234 test(c): add backwards compatibility tests for 1.1.0/1.0.0 
(#698)
     new 84415db8 feat(format): add additional features to 1.1.0 spec (#765)
     new 8095abbd feat(c): fix typos in 1.1.0, update driver manager (#857)
     new 60e7f31f feat(go/adbc): implement ADBC 1.1.0 features (#700)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e9795d3a)
            \
             N -- N -- N   refs/heads/spec-1.1.0 (60e7f31f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/integration.yml                  |   4 +-
 .github/workflows/native-unix.yml                  |   3 +-
 c/driver/postgresql/connection.cc                  |  21 +-
 c/driver/postgresql/connection.h                   |   1 +
 c/driver/postgresql/postgres_copy_reader.h         |   7 +
 c/driver/postgresql/postgresql_test.cc             |  54 +++-
 c/driver/postgresql/statement.cc                   | 328 +++++++++++++++++----
 c/driver/postgresql/statement.h                    |  20 +-
 c/driver/sqlite/sqlite_test.cc                     |   6 +
 c/driver_manager/adbc_driver_manager.cc            |  40 ++-
 c/driver_manager/adbc_driver_manager_test.cc       |   6 +
 c/validation/adbc_validation.cc                    |  99 +++++++
 c/validation/adbc_validation.h                     |   9 +
 docs/source/driver/flight_sql.rst                  |   4 +-
 docs/source/driver/installation.rst                |  18 ++
 docs/source/driver/postgresql.rst                  |   4 +-
 docs/source/driver/snowflake.rst                   |   4 +-
 docs/source/driver/sqlite.rst                      |   4 +-
 docs/source/python/api/adbc_driver_postgresql.rst  |   4 +-
 glib/test/test-connection.rb                       |   4 +-
 .../driver/flightsql/flightsql_adbc_server_test.go | 105 +++++++
 go/adbc/driver/flightsql/flightsql_adbc_test.go    |   2 +-
 go/adbc/driver/flightsql/utils.go                  |   2 +-
 go/adbc/driver/snowflake/driver_test.go            |  96 ++++++
 go/adbc/driver/snowflake/record_reader.go          |  88 ++++--
 go/adbc/driver/snowflake/statement.go              |   4 +-
 go/adbc/drivermgr/adbc_driver_manager.cc           |  40 ++-
 go/adbc/go.mod                                     |   2 +-
 go/adbc/go.sum                                     |   2 +
 go/adbc/utils/utils.go                             |  10 +-
 python/adbc_driver_flightsql/tests/test_dbapi.py   |  12 +
 .../adbc_driver_manager/_lib.pyx                   |  14 +
 .../adbc_driver_postgresql/__init__.py             |  13 +-
 python/adbc_driver_postgresql/tests/test_dbapi.py  |  33 ++-
 python/adbc_driver_postgresql/tests/test_polars.py |  16 +-
 r/adbcdrivermanager/R/error.R                      |   2 +-
 r/adbcdrivermanager/README.Rmd                     |  11 +-
 r/adbcdrivermanager/README.md                      |  13 +-
 .../tests/testthat/_snaps/driver_log.md            |   3 +-
 .../tests/testthat/_snaps/helpers.md               |  18 +-
 r/adbcdrivermanager/tests/testthat/test-helpers.R  |  12 +-
 r/adbcdrivermanager/tests/testthat/test-radbc.R    |  30 +-
 r/adbcflightsql/README.Rmd                         |  11 +-
 r/adbcflightsql/README.md                          |  13 +-
 r/adbcpostgresql/README.Rmd                        |  11 +-
 r/adbcpostgresql/README.md                         |  13 +-
 r/adbcsnowflake/README.Rmd                         |  11 +-
 r/adbcsnowflake/README.md                          |  13 +-
 r/adbcsqlite/README.Rmd                            |  11 +-
 r/adbcsqlite/README.md                             |  13 +-
 50 files changed, 1016 insertions(+), 248 deletions(-)

Reply via email to