clickhouse_postgres_client/
executor.rs

1pub use sqlx_clickhouse_ext::executor::ExecutorExt as ClickhouseExecutor;
2
3use crate::{
4    row::ClickhousePgRow, ClickhousePgConnection, ClickhousePgPool, ClickhousePgPoolConnection,
5};
6
7impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
8    for &'c ClickhousePgPool
9where
10    'c: 'async_trait,
11    'q: 'async_trait,
12{
13}
14
15impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
16    for &'c mut ClickhousePgPoolConnection
17where
18    'c: 'async_trait,
19    'q: 'async_trait,
20{
21}
22
23impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
24    for &'c mut ClickhousePgConnection
25where
26    'c: 'async_trait,
27    'q: 'async_trait,
28{
29}