-
Notifications
You must be signed in to change notification settings - Fork 320
Closed
Labels
autotest-addedthe case has append to autotestthe case has append to autotestautotest-waitissue waits to be added to autotestissue waits to be added to autotestcommunityissue from communityissue from communityresolveproblem has been fixed by developerproblem has been fixed by developersql_modemysql sql_mode relatedmysql sql_mode related
Milestone
Description
- dble version:version: 5.6.23-dble-2.19.07.0-dd160d6138a16228617b75a20d284dd117f5b138-20190919114227
- preconditions :
create table test (area_id int ,areaId int ,name char(10));
insert into test values(1,2,'q'),(4,5,'f'),(7,8,'h');
- configs:
schema.xml
<schema name="testdb" dataNode="dn1">
<table name="test" rule="hash-4" dataNode="dn1,dn2,dn3,dn4"></table>
</schema>
rule.xml
<tableRule name="hash-4">
<rule>
<columns>area_id</columns>
<algorithm>4-long</algorithm>
</rule>
</tableRule>
<function name="4-long" class="Hash">
<property name="partitionCount">4</property>
<property name="partitionLength">1</property>
</function>
- steps:
1.execute in dble server port with alias is one of the table's column names:
mysql> select area_id as areaId,count(1) as count from test group by area_id;
ERROR 1003 (HY000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'db4.test.area_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
2.change the alias to other
mysql> select area_id as areaIda,count(1) as count from test group by area_id;
+---------+-------+
| areaIda | count |
+---------+-------+
| 1 | 1 |
| 4 | 1 |
| 7 | 1 |
+---------+-------+
3 rows in set (0.00 sec)
3.exeute the same sql as step1's in mysql and return correct result
mysql> select area_id as areaId,count(1) as count from test group by area_id;
+--------+-------+
| areaId | count |
+--------+-------+
| 4 | 1 |
+--------+-------+
1 row in set (0.00 sec)
- expect result:
1.step 1 should retuen correct result - real result:
1.step 1 return error
Metadata
Metadata
Assignees
Labels
autotest-addedthe case has append to autotestthe case has append to autotestautotest-waitissue waits to be added to autotestissue waits to be added to autotestcommunityissue from communityissue from communityresolveproblem has been fixed by developerproblem has been fixed by developersql_modemysql sql_mode relatedmysql sql_mode related