You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Most `Value` variants are now unboxed (except `BigDecimal` and `Array`). Previously the size is 24 bytes. https://github.com/SeaQL/sea-query/pull/925
56
58
```rust
57
59
assert_eq!(std::mem::size_of::<Value>(), 32);
@@ -96,6 +98,11 @@ assert_eq!(
96
98
97
99
### Breaking Changes
98
100
101
+
* Changed `Expr::TypeName(DynIden)` to `Expr::TypeName(TypeName)`, which can be
If you manually construct this variant and it no longer compiles, just add
105
+
`.into()`.
99
106
* Removed inherent `SimpleExpr` methods that duplicate `ExprTrait`. If you encounter the following error, please add `use sea_query::ExprTrait` in scope https://github.com/SeaQL/sea-query/pull/890
0 commit comments