diff --git a/sqlx-core/src/mysql/mod.rs b/sqlx-core/src/mysql/mod.rs index 1cd9cd2a..7efddc38 100644 --- a/sqlx-core/src/mysql/mod.rs +++ b/sqlx-core/src/mysql/mod.rs @@ -29,4 +29,4 @@ pub type MySqlPool = crate::pool::Pool; make_query_as!(MySqlQueryAs, MySql, MySqlRow); impl_map_row_for_row!(MySql, MySqlRow); impl_column_index_for_row!(MySql); -impl_from_row_for_tuples!(MySql, MySqlRow); \ No newline at end of file +impl_from_row_for_tuples!(MySql, MySqlRow); diff --git a/sqlx-core/src/postgres/mod.rs b/sqlx-core/src/postgres/mod.rs index d5f80737..f1dd5997 100644 --- a/sqlx-core/src/postgres/mod.rs +++ b/sqlx-core/src/postgres/mod.rs @@ -29,4 +29,4 @@ pub type PgPool = crate::pool::Pool; make_query_as!(PgQueryAs, Postgres, PgRow); impl_map_row_for_row!(Postgres, PgRow); impl_column_index_for_row!(Postgres); -impl_from_row_for_tuples!(Postgres, PgRow); \ No newline at end of file +impl_from_row_for_tuples!(Postgres, PgRow);