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
Allow qualified type names in cast_as_quoted (#922)
As discussed here:
#827 (comment)
## PR Info
- Closes#827
- Dependencies:
- #921
- #953
## Changes
The PR has been updated. The up-to-date description is in the changelog
in the diff.
---
**Original, outdated note:**
Merge after #921. Marking as draft until then. The first commit comes as
a dependency from that PR. If you want to review the diff before merging
that PR, review only the second commit.
* 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