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/06/13 13:04:07 UTC

[arrow-adbc] branch main updated (d9e62487 -> 90c936a0)

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 d9e62487 docs: add literate-style code recipes (#759)
     add 90c936a0 refactor(csharp): Cleanup C API (#749)

No new revisions were added by this update.

Summary of changes:
 .../{AdbcInfoCode.cs => C/CAdbcConnection.cs}      |  102 +-
 csharp/src/Apache.Arrow.Adbc/C/CAdbcDatabase.cs    |   70 ++
 csharp/src/Apache.Arrow.Adbc/C/CAdbcDriver.cs      |  310 ++++++
 .../src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs |  681 ++++++++++++
 .../LoadDriver.cs => C/CAdbcDriverImporter.cs}     |  981 ++++++++--------
 csharp/src/Apache.Arrow.Adbc/C/CAdbcError.cs       |   91 ++
 csharp/src/Apache.Arrow.Adbc/C/CAdbcPartitions.cs  |   74 ++
 csharp/src/Apache.Arrow.Adbc/C/CAdbcStatement.cs   |   57 +
 .../{Interop => C}/NativeDelegate.cs               |    2 +-
 csharp/src/Apache.Arrow.Adbc/Interop.cs            | 1172 +-------------------
 .../Apache.Arrow.Adbc.FlightSql.Tests.csproj       |    5 +-
 11 files changed, 1825 insertions(+), 1720 deletions(-)
 copy csharp/src/Apache.Arrow.Adbc/{AdbcInfoCode.cs => C/CAdbcConnection.cs} (54%)
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcDatabase.cs
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcDriver.cs
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs
 rename csharp/src/Apache.Arrow.Adbc/{Interop/LoadDriver.cs => C/CAdbcDriverImporter.cs} (71%)
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcError.cs
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcPartitions.cs
 create mode 100644 csharp/src/Apache.Arrow.Adbc/C/CAdbcStatement.cs
 rename csharp/src/Apache.Arrow.Adbc/{Interop => C}/NativeDelegate.cs (97%)