fix(sqlite, test): column overrides still have runtime type checking, use the correct Rust type to match the sql type

This commit is contained in:
Ryan Leckey 2020-06-25 05:34:52 -07:00
parent 991c0ba155
commit 7beceba832

View File

@ -100,7 +100,7 @@ async fn test_column_override_nullable() -> anyhow::Result<()> {
#[derive(PartialEq, Eq, Debug, sqlx::Type)]
#[sqlx(transparent)]
struct MyInt(i32);
struct MyInt(i64);
#[sqlx_macros::test]
async fn test_column_override_wildcard() -> anyhow::Result<()> {