Skip to content

Commit

Permalink
SQLite real datatype maps to double (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 authored Jul 10, 2022
1 parent f6bb1d5 commit 78cf272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqlite/def/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Type {
column_def.binary();
}
Self::Real | Self::Double | Self::DoublePrecision | Self::Float | Self::Numeric => {
column_def.decimal();
column_def.double();
}
Self::Decimal {
integral,
Expand Down

0 comments on commit 78cf272

Please sign in to comment.