prisma / quaint

SQL Query AST and Visitor for Rust
Apache License 2.0
583 stars 61 forks source link

Support unsigned big integer larger than i64::MAX for MySQL #334

Open serejkaaa512 opened 2 years ago

serejkaaa512 commented 2 years ago

Currently i64 is used to support MySQL UInt. Is it possible to replace it with u64 and support whole size of unsigned big integer? serde_json supports u64 Number type.