kou commented on PR #28: URL: https://github.com/apache/arrow-flight-sql-postgresql/pull/28#issuecomment-1465001257
I reconsidered `COPY`. We may not need to use `COPY` because we don't use the PostgreSQL's wire protocol. We use SPI (Server Programming Interface, https://www.postgresql.org/docs/current/spi.html ) instead of libpq. SPI runs a query in the same process. So we can get a value from PostgreSQL as-is (as `Datum)` without serialization/deserialization. -- 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]
