```ts const sqli = await sql.reserve(); await sqli.begin(async (sql) => await sql`select 1`); sqli.release(); // sqli.begin is not a function ``` Is there a technical reason transactions are not supported by reserved connections?