Skip to content

Commit

Permalink
Merge pull request #556 from SeaQL/sqlite-bigint
Browse files Browse the repository at this point in the history
Correctly map SQLite `bigint`
  • Loading branch information
ikrivosheev authored Dec 19, 2022
2 parents 485b087 + 46cdc4c commit 22f07c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/sqlite/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl TableBuilder for SqliteQueryBuilder {
ColumnType::TinyInteger | ColumnType::TinyUnsigned => "integer".into(),
ColumnType::SmallInteger | ColumnType::SmallUnsigned => "integer".into(),
ColumnType::Integer | ColumnType::Unsigned => "integer".into(),
ColumnType::BigInteger | ColumnType::BigUnsigned => "integer".into(),
ColumnType::BigInteger | ColumnType::BigUnsigned => "bigint".into(),
ColumnType::Float => "real".into(),
ColumnType::Double => "real".into(),
ColumnType::Decimal(precision) => match precision {
Expand Down

0 comments on commit 22f07c8

Please sign in to comment.