File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5
5
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938 ) PR #939
6
6
* Bugfix - ` ExternalTable.delete ` should not remove row on error (#953 ) PR #956
7
7
* Bugfix - Fix error handling of remove_object function in ` s3.py ` (#952 ) PR #955
8
- * Bugfix - Fix sql code generation to comply with sql mode ONLY_FULL_GROUP_BY (#916 ) PR #965
8
+ * Bugfix - Fix sql code generation to comply with sql mode ` ONLY_FULL_GROUP_BY ` (#916 ) PR #965
9
9
10
10
### 0.13.2 -- May 7, 2021
11
11
* Update ` setuptools_certificate ` dependency to new name ` otumat `
Original file line number Diff line number Diff line change 4
4
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938) PR #939
5
5
* Bugfix - `ExternalTable.delete ` should not remove row on error (#953) PR #956
6
6
* Bugfix - Fix error handling of remove_object function in `s3.py ` (#952) PR #955
7
- * Bugfix - Fix sql code generation to comply with sql mode ONLY_FULL_GROUP_BY (#916) PR #965
7
+ * Bugfix - Fix sql code generation to comply with sql mode `` ONLY_FULL_GROUP_BY `` (#916) PR #965
8
8
9
9
0.13.2 -- May 7, 2021
10
10
----------------------
Original file line number Diff line number Diff line change 3
3
4
4
def test_aggr_with_proj ():
5
5
# issue #944 - only breaks with MariaDB
6
+ # Maria db wants all the fields in the select statement to be in the group by
7
+ # even if the fields are in fuctional dependency, this is incorrect and MySQL
8
+ # implements this properly
9
+ # More info on the issue page
6
10
A .aggr (D .proj (m = 'id_l' ), ..., n = 'max(m) - min(m)' )
You can’t perform that action at this time.
0 commit comments