You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ze...@apache.org on 2023/01/17 17:18:35 UTC

[arrow-adbc] branch main updated (ce2128d -> a2d4c9b)

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

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


    from ce2128d  feat(c/driver/postgresql): expand type support (#352)
     add a2d4c9b  feat(go/adbc/driver/flightsql): Build C shared lib for flightsql adbc driver (#347)

No new revisions were added by this update.

Summary of changes:
 ci/scripts/go_build.sh                     |   8 +
 go/adbc/driver/flightsql/flightsql_adbc.go |   8 +-
 go/adbc/pkg/Makefile                       |  35 ++
 go/adbc/pkg/_tmpl/driver.go.tmpl           | 655 ++++++++++++++++++++++++++++
 go/adbc/pkg/_tmpl/utils.c.tmpl             | 197 +++++++++
 go/adbc/pkg/_tmpl/utils.h.tmpl             |  59 +++
 go/adbc/{drivermgr => pkg}/doc.go          |  17 +-
 go/adbc/pkg/flightsql/driver.go            | 658 +++++++++++++++++++++++++++++
 go/adbc/pkg/flightsql/utils.c              | 200 +++++++++
 go/adbc/pkg/flightsql/utils.h              |  97 +++++
 go/adbc/pkg/gen/main.go                    | 184 ++++++++
 11 files changed, 2113 insertions(+), 5 deletions(-)
 create mode 100644 go/adbc/pkg/Makefile
 create mode 100644 go/adbc/pkg/_tmpl/driver.go.tmpl
 create mode 100644 go/adbc/pkg/_tmpl/utils.c.tmpl
 create mode 100644 go/adbc/pkg/_tmpl/utils.h.tmpl
 copy go/adbc/{drivermgr => pkg}/doc.go (54%)
 create mode 100644 go/adbc/pkg/flightsql/driver.go
 create mode 100644 go/adbc/pkg/flightsql/utils.c
 create mode 100644 go/adbc/pkg/flightsql/utils.h
 create mode 100644 go/adbc/pkg/gen/main.go