mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
* expose PgCopyIn * downgrade Pool<Posgres> copy_in_raw/out_row to take &self
This commit is contained in:
parent
c8db803dca
commit
a304161b28
2 changed files with 3 additions and 8 deletions
|
@ -75,10 +75,7 @@ impl Pool<Postgres> {
|
|||
/// ### Note
|
||||
/// [PgCopyIn::finish] or [PgCopyIn::abort] *must* be called when finished or the connection
|
||||
/// will return an error the next time it is used.
|
||||
pub async fn copy_in_raw(
|
||||
&mut self,
|
||||
statement: &str,
|
||||
) -> Result<PgCopyIn<PoolConnection<Postgres>>> {
|
||||
pub async fn copy_in_raw(&self, statement: &str) -> Result<PgCopyIn<PoolConnection<Postgres>>> {
|
||||
PgCopyIn::begin(self.acquire().await?, statement).await
|
||||
}
|
||||
|
||||
|
@ -101,10 +98,7 @@ impl Pool<Postgres> {
|
|||
///
|
||||
/// Command examples and accepted formats for `COPY` data are shown here:
|
||||
/// https://www.postgresql.org/docs/current/sql-copy.html
|
||||
pub async fn copy_out_raw(
|
||||
&mut self,
|
||||
statement: &str,
|
||||
) -> Result<BoxStream<'static, Result<Bytes>>> {
|
||||
pub async fn copy_out_raw(&self, statement: &str) -> Result<BoxStream<'static, Result<Bytes>>> {
|
||||
pg_begin_copy_out(self.acquire().await?, statement).await
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@ mod migrate;
|
|||
pub use arguments::{PgArgumentBuffer, PgArguments};
|
||||
pub use column::PgColumn;
|
||||
pub use connection::{PgConnection, PgConnectionInfo};
|
||||
pub use copy::PgCopyIn;
|
||||
pub use database::Postgres;
|
||||
pub use error::{PgDatabaseError, PgErrorPosition};
|
||||
pub use listener::{PgListener, PgNotification};
|
||||
|
|
Loading…
Reference in a new issue