felipecrv commented on code in PR #3202: URL: https://github.com/apache/arrow-adbc/pull/3202#discussion_r2231376404
########## go/adbc/pkg/flightsql/utils.c: ########## @@ -431,16 +431,10 @@ AdbcStatusCode AdbcStatementSetOptionInt(struct AdbcStatement* statement, ADBC_EXPORT AdbcStatusCode AdbcDriverInit(int version, void* driver, struct AdbcError* error) { - return AdbcDriverFlightsqlInit(version, driver, error); + return AdbcDriverFlightSQLInit(version, driver, error); } #endif // ADBC_NO_COMMON_ENTRYPOINTS -ADBC_EXPORT -AdbcStatusCode FlightSqlDriverInit(int version, void* driver, struct AdbcError* error) { - // For backwards compatibility - return AdbcDriverFlightsqlInit(version, driver, error); -} - Review Comment: The changes to `init.go` were needed to compensate for this removal of code that was previously manually added to this auto-generated C file. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org