Ivan Krivosheev
Ivan Krivosheev
@tyt2y3 @billy1624, hello. POC for support `VIEW` is done (without docs and tests). I have one question: `ViewCreateStatement` has field: `query` which is `SelectStatement`. For transform `SelectStatement ` to **SQL**...
@tyt2y3 @billy1624 any ideas?
> Hey @ikrivosheev, sorry for the delay. What a huge PR loll > > Notice a few things. For, create view: > - `OR REPLACE` is supported by MySQL, MariaDB...
> status? @ian-p-cooke hello! I am working on support Postgres array in SeaQuery. After I will return back to this PR.
@billy1624 @tyt2y3 can you review?) I have done.
@billy1624 @tyt2y3 hello! I have small question. [Expr::ne](https://docs.rs/sea-query/latest/sea_query/expr/struct.Expr.html#method.ne) have signature: `pub fn ne(self, v: V) -> SimpleExpr`. If i rewrite this method to: `pub fn ne(self, v: V) -> SimpleExpr`...
> Hey @ikrivosheev, good suggestions!! I do think we need `eq_expr` and `ne_expr` inside `Expr`. That's definitely nice to have. @billy1624 hello! Done
Hmm, @billy1624, I think about new method... Maybe is better `impl From for SimpleExpr`, where T is all types for `Value`? And after that we don`t need new method. What...
> Hmm, @billy1624, I think about new method... Maybe is better `impl From for SimpleExpr`, where T is all types for `Value`? And after that we don`t need new method....
@billy1624 @tyt2y3 done! I add `impl From for SimpleExpr` and everything works without the new method!