mysqltest: At line 8: query 'SELECT 1 FROM t2 GROUP BY 1' failed: ER_WRONG_GROUP_FIELD (1056): Can't group on 'min(`c`)'
Roel Van de Paar
added a comment - - edited MTR Testcase:
--source plugin/spider/spider/include/init_spider.inc
--source include/have_innodb.inc
SET spider_same_server_link= on ;
eval CREATE SERVER srv FOREIGN DATA WRAPPER MYSQL OPTIONS (HOST "127.0.0.1" , DATABASE "test" , USER "root" , PORT $MASTER_MYPORT);
CREATE TABLE t1 (c INT KEY ) ENGINE=InnoDB;
CREATE TABLE t2 (c INT KEY ) ENGINE=Spider COMMENT= 'WRAPPER "mysql",SRV "srv",TABLE "t1"' ;
LOCK TABLE t2 READ ;
SELECT 1 FROM t2 GROUP BY 1;
# Cleanup
DROP TABLE t1,t2;
--source plugin/spider/spider/include/deinit_spider.inc
11.2.5 03807c8449cdccbf5b8afc0dddabb1d8ec7ba85a (Optimized)
mysqltest: At line 8: query 'SELECT 1 FROM t2 GROUP BY 1' failed: ER_WRONG_GROUP_FIELD (1056): Can't group on 'min(`c`)'
The following analysis is based on a custom branch (bb-10.5-mdev-34639 bc792266f9b1c83182bbcfc9d8eb256cf11dffe7) with two commits above the 10.5 main branch 872dbec93570bb934473907f5d1fcf74aeee4f85, but the behaviour should be the same at the latter.
The offending query sent to the data node is:
"select min(`c`) from `test`.`t1` group by 1 order by `c`"
It is sent in the index_first call to the handler.
One issue is that spider seems oblivious with GROUP BY a column index number:
There are other things in the stack that are not clear, including the meaning of spider_select_column_mode which causes entering the else branch in spider_db_append_select_columns() that resulted in calling spider->append_minimum_select_sql_part, as well as the meaning of spider->append_minimum_select_sql_part itself, e.g. whether the minimum means appending min or just appending minimum amount of "select parts" (whatever that means)...
The stack:
0 in spider_db_check_select_colum_in_group of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_conn.cc:9579
1 in spider_mbase_handler::append_minimum_select of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_mysql.cc:9739
2 in spider_mbase_handler::append_minimum_select_part of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_mysql.cc:9698
3 in ha_spider::append_minimum_select_sql_part of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:13375
4 in spider_db_append_select_columns of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_conn.cc:1419
5 in ha_spider::index_first_internal of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:2599
6 in ha_spider::index_first of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:2916
7 in handler::ha_index_first of /home/ycp/source/mariadb-server/10.5/src/sql/handler.cc:3338
Yuchen Pei
added a comment - - edited The following analysis is based on a custom branch (bb-10.5-mdev-34639 bc792266f9b1c83182bbcfc9d8eb256cf11dffe7) with two commits above the 10.5 main branch 872dbec93570bb934473907f5d1fcf74aeee4f85, but the behaviour should be the same at the latter.
The offending query sent to the data node is:
"select min(`c`) from `test`.`t1` group by 1 order by `c`"
It is sent in the index_first call to the handler.
One issue is that spider seems oblivious with GROUP BY a column index number:
bool spider_db_check_select_colum_in_group(
st_select_lex *select_lex,
Field *field
) {
ORDER *group;
DBUG_ENTER( "spider_db_check_select_colum_in_group" );
for (group = (ORDER *) select_lex->group_list.first; group;
group = group->next)
{
Item *item = *group->item;
if (item->type() == Item::FIELD_ITEM)
{
Item_field *item_field = (Item_field *) item;
if (item_field->field == field)
{
/* This field can be used directly */
DBUG_RETURN(TRUE);
}
}
}
DBUG_RETURN(FALSE);
}
which causes the caller to enter the else branch:
if (select_lex &&
!spider_db_check_select_colum_in_group(select_lex, *field))
{
# [... 8 lines elided]
} else {
#endif
if (str->reserve(field_length +
/* SPIDER_SQL_NAME_QUOTE_LEN */ 2 + SPIDER_SQL_COMMA_LEN))
DBUG_RETURN(HA_ERR_OUT_OF_MEM);
mysql_share->append_column_name(str, (*field)->field_index);
#ifdef HANDLER_HAS_DIRECT_AGGREGATE
}
There are other things in the stack that are not clear, including the meaning of spider_select_column_mode which causes entering the else branch in spider_db_append_select_columns() that resulted in calling spider->append_minimum_select_sql_part , as well as the meaning of spider->append_minimum_select_sql_part itself, e.g. whether the minimum means appending min or just appending minimum amount of "select parts" (whatever that means)...
The stack:
0 in spider_db_check_select_colum_in_group of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_conn.cc:9579
1 in spider_mbase_handler::append_minimum_select of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_mysql.cc:9739
2 in spider_mbase_handler::append_minimum_select_part of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_mysql.cc:9698
3 in ha_spider::append_minimum_select_sql_part of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:13375
4 in spider_db_append_select_columns of /home/ycp/source/mariadb-server/10.5/src/storage/spider/spd_db_conn.cc:1419
5 in ha_spider::index_first_internal of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:2599
6 in ha_spider::index_first of /home/ycp/source/mariadb-server/10.5/src/storage/spider/ha_spider.cc:2916
7 in handler::ha_index_first of /home/ycp/source/mariadb-server/10.5/src/sql/handler.cc:3338
People
Yuchen Pei
Roel Van de Paar
Votes:
0Vote for this issue
Watchers:
2Start watching this issue
Dates
Created:
Updated:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1312.3000001907349,"ttfb":450.6000003814697,"pageVisibility":"visible","entityId":130139,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"6189345f-982b-4783-8020-0a07811977d4","navigationType":0,"readyForUser":1405.5,"redirectCount":0,"resourceLoadedEnd":1986.3000001907349,"resourceLoadedStart":457.20000076293945,"resourceTiming":[{"duration":201.19999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":457.20000076293945,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":457.20000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":658.4000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":201.30000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":457.4000005722046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":457.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":658.7000007629395,"responseStart":0,"secureConnectionStart":0},{"duration":286.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":457.6000003814697,"connectEnd":457.6000003814697,"connectStart":457.6000003814697,"domainLookupEnd":457.6000003814697,"domainLookupStart":457.6000003814697,"fetchStart":457.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":457.6000003814697,"responseEnd":743.9000005722046,"responseStart":743.9000005722046,"secureConnectionStart":457.6000003814697},{"duration":449,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":457.70000076293945,"connectEnd":457.70000076293945,"connectStart":457.70000076293945,"domainLookupEnd":457.70000076293945,"domainLookupStart":457.70000076293945,"fetchStart":457.70000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":457.70000076293945,"responseEnd":906.7000007629395,"responseStart":906.7000007629395,"secureConnectionStart":457.70000076293945},{"duration":461.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":458,"connectEnd":458,"connectStart":458,"domainLookupEnd":458,"domainLookupStart":458,"fetchStart":458,"redirectEnd":0,"redirectStart":0,"requestStart":458,"responseEnd":919.8000001907349,"responseStart":919.8000001907349,"secureConnectionStart":458},{"duration":462.0999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":458.20000076293945,"connectEnd":458.20000076293945,"connectStart":458.20000076293945,"domainLookupEnd":458.20000076293945,"domainLookupStart":458.20000076293945,"fetchStart":458.20000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":458.20000076293945,"responseEnd":920.3000001907349,"responseStart":920.3000001907349,"secureConnectionStart":458.20000076293945},{"duration":462.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":458.30000019073486,"connectEnd":458.30000019073486,"connectStart":458.30000019073486,"domainLookupEnd":458.30000019073486,"domainLookupStart":458.30000019073486,"fetchStart":458.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":458.30000019073486,"responseEnd":921.2000007629395,"responseStart":921.2000007629395,"secureConnectionStart":458.30000019073486},{"duration":502.70000076293945,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":458.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":458.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":961.2000007629395,"responseStart":0,"secureConnectionStart":0},{"duration":463.0999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":458.70000076293945,"connectEnd":458.70000076293945,"connectStart":458.70000076293945,"domainLookupEnd":458.70000076293945,"domainLookupStart":458.70000076293945,"fetchStart":458.70000076293945,"redirectEnd":0,"redirectStart":0,"requestStart":458.70000076293945,"responseEnd":921.8000001907349,"responseStart":921.8000001907349,"secureConnectionStart":458.70000076293945},{"duration":502.3999996185303,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":458.9000005722046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":458.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":961.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":463.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":459,"connectEnd":459,"connectStart":459,"domainLookupEnd":459,"domainLookupStart":459,"fetchStart":459,"redirectEnd":0,"redirectStart":0,"requestStart":459,"responseEnd":922.9000005722046,"responseStart":922.9000005722046,"secureConnectionStart":459},{"duration":929.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":459.9000005722046,"connectEnd":459.9000005722046,"connectStart":459.9000005722046,"domainLookupEnd":459.9000005722046,"domainLookupStart":459.9000005722046,"fetchStart":459.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":459.9000005722046,"responseEnd":1389.8000001907349,"responseStart":1389.8000001907349,"secureConnectionStart":459.9000005722046},{"duration":1521.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":464.80000019073486,"connectEnd":464.80000019073486,"connectStart":464.80000019073486,"domainLookupEnd":464.80000019073486,"domainLookupStart":464.80000019073486,"fetchStart":464.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":464.80000019073486,"responseEnd":1986.3000001907349,"responseStart":1986.3000001907349,"secureConnectionStart":464.80000019073486},{"duration":396.6000003814697,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":993.8000001907349,"connectEnd":993.8000001907349,"connectStart":993.8000001907349,"domainLookupEnd":993.8000001907349,"domainLookupStart":993.8000001907349,"fetchStart":993.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":993.8000001907349,"responseEnd":1390.4000005722046,"responseStart":1390.4000005722046,"secureConnectionStart":993.8000001907349},{"duration":698.6000003814697,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1304.8000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1304.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2003.4000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":635,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1445.8000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1445.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2080.800000190735,"responseStart":0,"secureConnectionStart":0},{"duration":631.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1447.8000001907349,"connectEnd":1447.8000001907349,"connectStart":1447.8000001907349,"domainLookupEnd":1447.8000001907349,"domainLookupStart":1447.8000001907349,"fetchStart":1447.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":1447.8000001907349,"responseEnd":2079.7000007629395,"responseStart":2079.7000007629395,"secureConnectionStart":1447.8000001907349},{"duration":639.0999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":1448.7000007629395,"connectEnd":1448.7000007629395,"connectStart":1448.7000007629395,"domainLookupEnd":1448.7000007629395,"domainLookupStart":1448.7000007629395,"fetchStart":1448.7000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":1448.7000007629395,"responseEnd":2087.800000190735,"responseStart":2087.800000190735,"secureConnectionStart":1448.7000007629395}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":288,"responseStart":451,"responseEnd":460,"domLoading":455,"domInteractive":2031,"domContentLoadedEventStart":2031,"domContentLoadedEventEnd":2081,"domComplete":2628,"loadEventStart":2628,"loadEventEnd":2628,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2004.4000005722046},{"name":"bigPipe.sidebar-id.end","time":2005.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":2005.5},{"name":"bigPipe.activity-panel-pipe-id.end","time":2008.5},{"name":"activityTabFullyLoaded","time":2097}],"measures":[],"correlationId":"6116453b455161","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":101,"dbReadsTimeInMs":11,"dbConnsTimeInMs":19,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
MTR Testcase:
--source plugin/spider/spider/include/init_spider.inc
--source include/have_innodb.inc
# Cleanup
11.2.5 03807c8449cdccbf5b8afc0dddabb1d8ec7ba85a (Optimized)
mysqltest: At line 8: query 'SELECT 1 FROM t2 GROUP BY 1' failed: ER_WRONG_GROUP_FIELD (1056): Can't group on 'min(`c`)'