This is an automated email from the ASF dual-hosted git repository.
curth 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 672941017 chore(csharp/src/Apache.Arrow.Adbc/C): revert #2409 (#2411)
672941017 is described below
commit 672941017b74f973174279d3cd1d278bddf8dc5a
Author: David Li <[email protected]>
AuthorDate: Mon Jan 6 07:41:25 2025 -0500
chore(csharp/src/Apache.Arrow.Adbc/C): revert #2409 (#2411)
This reverts commit
https://github.com/apache/arrow-adbc/commit/1d268e9e5071bad9ea860780002df3a361309fdb.
---
.github/CODEOWNERS | 2 +-
csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 1dd38f086..402484a42 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -27,7 +27,7 @@ adbc.h @lidavidm
## Implementations
/c/ @lidavidm
-/csharp/ @lidavidm @CurtHagenlocher
+/csharp/ @CurtHagenlocher
/glib/ @kou
/java/ @lidavidm
/go/ @zeroshade
diff --git a/csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs
b/csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs
index 3212b3d52..0accb1338 100644
--- a/csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs
+++ b/csharp/src/Apache.Arrow.Adbc/C/CAdbcDriverExporter.cs
@@ -127,13 +127,12 @@ namespace Apache.Arrow.Adbc.C
nativeDriver->StatementBindStream = StatementBindStreamPtr;
nativeDriver->StatementExecuteQuery = StatementExecuteQueryPtr;
nativeDriver->StatementExecutePartitions =
StatementExecutePartitionsPtr;
- nativeDriver->StatementExecuteSchema = StatementExecuteSchemaPtr;
+ nativeDriver->StatementGetParameterSchema =
StatementGetParameterSchemaPtr;
nativeDriver->StatementNew = StatementNewPtr;
nativeDriver->StatementPrepare = StatementPreparePtr;
nativeDriver->StatementRelease = StatementReleasePtr;
nativeDriver->StatementSetSqlQuery = StatementSetSqlQueryPtr;
nativeDriver->StatementSetSubstraitPlan =
StatementSetSubstraitPlanPtr;
- nativeDriver->StatementGetParameterSchema =
StatementGetParameterSchemaPtr;
return 0;
}