taozuhong commented on issue #2326: URL: https://github.com/apache/arrow-adbc/issues/2326#issuecomment-2521872672
@lidavidm @kou I've tried the solution: remove ADBC_EXPORT for struct, then pass the compilation: ``` c\include\arrow-adbc\adbc.h c\driver\sqlite\statement_reader.h ``` ``` mkdir c/build cd c/build cmake -DADBC_DRIVER_MANAGER=ON -DADBC_DRIVER_SQLITE=ON -DADBC_DRIVER_POSTGRESQL=ON -DADBC_DRIVER_FLIGHTSQL=OFF .. cmake --build . ``` The build pipe will throw exception while building with command: ``` cmake -DADBC_DRIVER_MANAGER=ON -DADBC_DRIVER_SQLITE=ON -DADBC_DRIVER_POSTGRESQL=ON -DADBC_DRIVER_FLIGHTSQL=ON .. ``` `package github.com/apache/arrow-adbc/go/adbc/pkg/flightsql: cannot find package` **it seems that the Go package `flightsql` should be builded first.** -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
