@@ -37,17 +37,23 @@ pub use sqlx_core::migrate;
3737#[ cfg( feature = "mysql" ) ]  
3838#[ cfg_attr( docsrs,  doc( cfg( feature = "mysql" ) ) ) ]  
3939#[ doc( inline) ]  
40- pub  use  sqlx_mysql:: { self  as  mysql,  MySql ,  MySqlConnection ,  MySqlExecutor ,  MySqlPool } ; 
40+ pub  use  sqlx_mysql:: { 
41+     self  as  mysql,  MySql ,  MySqlConnection ,  MySqlExecutor ,  MySqlPool ,  MySqlTransaction , 
42+ } ; 
4143
4244#[ cfg( feature = "postgres" ) ]  
4345#[ cfg_attr( docsrs,  doc( cfg( feature = "postgres" ) ) ) ]  
4446#[ doc( inline) ]  
45- pub  use  sqlx_postgres:: { self  as  postgres,  PgConnection ,  PgExecutor ,  PgPool ,  Postgres } ; 
47+ pub  use  sqlx_postgres:: { 
48+     self  as  postgres,  PgConnection ,  PgExecutor ,  PgPool ,  PgTransaction ,  Postgres , 
49+ } ; 
4650
4751#[ cfg( feature = "_sqlite" ) ]  
4852#[ cfg_attr( docsrs,  doc( cfg( feature = "_sqlite" ) ) ) ]  
4953#[ doc( inline) ]  
50- pub  use  sqlx_sqlite:: { self  as  sqlite,  Sqlite ,  SqliteConnection ,  SqliteExecutor ,  SqlitePool } ; 
54+ pub  use  sqlx_sqlite:: { 
55+     self  as  sqlite,  Sqlite ,  SqliteConnection ,  SqliteExecutor ,  SqlitePool ,  SqliteTransaction , 
56+ } ; 
5157
5258#[ cfg( feature = "any" ) ]  
5359#[ cfg_attr( docsrs,  doc( cfg( feature = "any" ) ) ) ]  
0 commit comments