NOTE: `mz-persist` intentionally does not depend on `mz-postgres-util`. These helpers are the only direct driver-call boundary in this module.
(client: &Object, query: &str)
| 76 | /// NOTE: `mz-persist` intentionally does not depend on `mz-postgres-util`. |
| 77 | /// These helpers are the only direct driver-call boundary in this module. |
| 78 | async fn pg_batch_execute(client: &Object, query: &str) -> Result<(), tokio_postgres::Error> { |
| 79 | #[allow(clippy::disallowed_methods)] |
| 80 | client.batch_execute(query).await |
| 81 | } |
| 82 | |
| 83 | async fn pg_query_prepared( |
| 84 | client: &Object, |