SeaQL / sea-query

🔱 A dynamic SQL query builder for MySQL, Postgres and SQLite
https://www.sea-ql.org
Other
1.12k stars 182 forks source link

Add `ExprTrait` (#771) #791

Open Expurple opened 2 months ago

Expurple commented 2 months ago

Edited PR Info

New Features

Bug Fixes

None

Breaking Changes

None

Changes

None

Unedited original notes

This is a "draft" PR with only implementation and almost no new documentation or tests. I'd like to hear some feedback before commiting to doing that.

I added a very minimal doctest on ExprTrait definition, as a showcase of expressions which are now possible to write without wrapping everything in layers of Expr::something(...). If it's not impressive or hard to understand, please let me know, I'll add more examples/comparisons. See also examples in #771 and #770. It's hard to understate: THIS IS A HUGE USABILITY WIN. I use SeaORM at work, I'm a relatively experienced user (and a contributor) at this point, but the Expr/SimpleExpr stuff still drives me crazy from time to time.

Apart from that doctest, there are no new tests, but note that ExprTrait methods are actually 100% covered by existing doctests of inherent Expr/SimpleExpr methods, which now call the trait under the hood.

This PR proposes a small breaking change, and I plan a few more, described in "PR Info". Let's also discuss this. Are you open to merging these? I'd really like to see them included. It makes things SO ELEGANT, compared to what we had. I think, now is a great time for this, as you go through unstable release candidates before major SeaORM 1.0.0.

tyt2y3 commented 1 month ago

Oh wow, thank you for coming back! This looks really neat!

I would say, there are two options going forward, and also depends on you choice:

  1. try not to break anything. this definitely will be a compromise, but at least some of the features will be available in SeaORM 1.0
  2. breaking everything as much as you like, and we'll ship it in the next major release. and probably backport some bits that's useful
Expurple commented 1 month ago

Ok, if I'm too late for SeaORM 1.0, then I'll go with the backwards-compatible path now. I'll finish with this PR first, then I explore the opportunities to impl for ColumnTrait in SeaORM, and also prepare notes for later breaking cleanups for 2.0.

UPD: the notes are at #795.

To finish this PR, I'm going to:

Expurple commented 1 month ago

I reverted the breaking impls and updated the PR description.

I'll add the documentation in the following days, and then the PR should be ready to merge.

Expurple commented 1 month ago

I've added documentation/doctests. The PR should be ready to merge now.

The docs are copy-pasted from the original inherent methods of Expr/SimpleExpr, but adjusted to actually call the trait method. I also linked to the trait methods from their inherent alternatives.

And I've noticed that the doctest for Expr::not_equals only calls equals. Someone probably copy-pasted it and forgot to edit. I fixed that separately in #796.