-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix regression sql mode #965
Changes from 6 commits
c1ca1f9
fbc47da
7d2344e
d029dd2
280256a
59b0227
6c9a0ab
66b7050
22eb1c3
588926e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4,6 +4,7 @@ | |||||
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938) PR #939 | ||||||
* Bugfix - `ExternalTable.delete` should not remove row on error (#953) PR #956 | ||||||
* Bugfix - Fix error handling of remove_object function in `s3.py` (#952) PR #955 | ||||||
* Bugfix - Fix sql code generation to comply with sql mode ONLY_FULL_GROUP_BY (#916) PR #965 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
0.13.2 -- May 7, 2021 | ||||||
---------------------- | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from .schema_simple import A, D | ||
|
||
|
||
def test_aggr_with_proj(): | ||
# issue #944 - only breaks with MariaDB | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jverswijver Not very clear on this one about the MariaDB breakage noted here. Let tag up on this too to understand more about this fix/test. Also, would be good to give an |
||
A.aggr(D.proj(m='id_l'), ..., n='max(m) - min(m)') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.