1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pub use sqlx_clickhouse_ext::executor::ExecutorExt as ClickhouseExecutor;

use crate::{
    row::ClickhousePgRow, ClickhousePgConnection, ClickhousePgPool, ClickhousePgPoolConnection,
};

impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
    for &'c ClickhousePgPool
where
    'c: 'async_trait,
    'q: 'async_trait,
{
}

impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
    for &'c mut ClickhousePgPoolConnection
where
    'c: 'async_trait,
    'q: 'async_trait,
{
}

impl<'c, 'q, 'async_trait> ClickhouseExecutor<'c, 'q, 'async_trait, ClickhousePgRow>
    for &'c mut ClickhousePgConnection
where
    'c: 'async_trait,
    'q: 'async_trait,
{
}