diff --git a/sqlx-macros/src/database/sqlite.rs b/sqlx-macros/src/database/sqlite.rs index b8100d1790..aaa7f2c0a8 100644 --- a/sqlx-macros/src/database/sqlite.rs +++ b/sqlx-macros/src/database/sqlite.rs @@ -1,11 +1,13 @@ use sqlx_core as sqlx; +// f32 is not included below as REAL represents a floating point value +// stored as an 8-byte IEEE floating point number +// For more info see: https://www.sqlite.org/datatype3.html#storage_classes_and_datatypes impl_database_ext! { sqlx::sqlite::Sqlite { bool, i32, i64, - f32, f64, String, Vec,