diff --git a/tests/any/any.rs b/tests/any/any.rs index d9d0a7369d..785dc1329c 100644 --- a/tests/any/any.rs +++ b/tests/any/any.rs @@ -18,7 +18,7 @@ where #[sqlx_macros::test] async fn it_has_all_the_types() -> anyhow::Result<()> { assert_eq!(6, get_val::("5 + 1").await?); - assert_eq!(6, get_val::("CAST(6 AS BIGINT)").await?); + assert_eq!(1234567890123, get_val::("1234567890123").await?); assert_eq!( "hello world".to_owned(), get_val::("'hello world'").await?