MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / pg_execute_prepared

Function pg_execute_prepared

src/persist/src/postgres.rs:101–108  ·  view source on GitHub ↗
(
    client: &Object,
    statement: &Statement,
    params: &[&(dyn ToSql + Sync)],
)

Source from the content-addressed store, hash-verified

99}
100
101async fn pg_execute_prepared(
102 client: &Object,
103 statement: &Statement,
104 params: &[&(dyn ToSql + Sync)],
105) -> Result<u64, tokio_postgres::Error> {
106 #[allow(clippy::disallowed_methods)]
107 client.execute(statement, params).await
108}
109
110impl ToSql for SeqNo {
111 fn to_sql(

Callers 2

compare_and_setMethod · 0.70
truncateMethod · 0.70

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected