sfackler / rust-postgres

Native PostgreSQL driver for the Rust programming language
Apache License 2.0
3.42k stars 436 forks source link

copy_in ordering guarantees #1087

Closed mahkoh closed 8 months ago

mahkoh commented 8 months ago

For queries the following guarantee is documented:

Requests are executed in the order that they are first polled

Can the same guarantee be made for copy_in if the statement is already prepared?

sfackler commented 8 months ago

Yep, that also applies to copy_in/out.

mahkoh commented 8 months ago

Thank you.