Update sea-query dependency to 0.24.0 (#673)
* Use sea-query 0.24.0 * window: None * window: None * window: None
This commit is contained in:
parent
738f73c4bc
commit
e20f6e24c5
@ -31,7 +31,7 @@ futures-util = { version = "^0.3" }
|
||||
tracing = { version = "0.1", features = ["log"] }
|
||||
rust_decimal = { version = "^1", optional = true }
|
||||
sea-orm-macros = { version = "^0.7.0", path = "sea-orm-macros", optional = true }
|
||||
sea-query = { version = "^0.23.0", features = ["thread-safe"] }
|
||||
sea-query = { version = "^0.24.0", features = ["thread-safe"] }
|
||||
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
serde_json = { version = "^1", optional = true }
|
||||
|
@ -161,6 +161,7 @@ where
|
||||
selector.query().expr(SelectExpr {
|
||||
expr,
|
||||
alias: Some(SeaRc::new(Alias::new(&alias))),
|
||||
window: None,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ pub trait QuerySelect: Sized {
|
||||
self.query().expr(SelectExpr {
|
||||
expr: col.into_simple_expr(),
|
||||
alias: Some(SeaRc::new(alias.into_identity())),
|
||||
window: None,
|
||||
});
|
||||
self
|
||||
}
|
||||
|
@ -102,6 +102,7 @@ where
|
||||
select_two.query().expr(SelectExpr {
|
||||
expr,
|
||||
alias: Some(SeaRc::new(Alias::new(&alias))),
|
||||
window: None,
|
||||
});
|
||||
}
|
||||
select_two
|
||||
|
Loading…
x
Reference in New Issue
Block a user