Test case:
--source include/have_innodb.inc
--source include/have_partition.inc
CREATE TABLE t1 (f1 VARCHAR (512) CHARACTER SET utf8) ENGINE=InnoDB;
INSERT INTO t1 VALUES ( 'j' );
CREATE TABLE t2 (
f2 VARCHAR (5) CHARACTER SET latin1,
f3 VARCHAR (5) CHARACTER SET utf8,
f4 INT ,
f5 VARCHAR (512) CHARACTER SET utf8,
f6 VARCHAR (256) CHARACTER SET utf8,
key (f2),
key (f3),
key (f5)
) ENGINE=InnoDB PARTITION BY LIST COLUMNS (f4)
SUBPARTITION BY KEY (f6) SUBPARTITIONS 4 (
PARTITION p0 VALUES IN (1,3,9, null ),
PARTITION p1 VALUES IN (2,4,0)
);
INSERT INTO t2 VALUES
( 'k' , 's' ,3, 'b' , 'j' ),( 'a' , 'b' , NULL , 'v' , 'j' ),( 'c' , 'm' ,9, 't' , NULL ),
( 'b' , 'l' ,9, 'b' , NULL ),( 'i' , 'y' ,3, 'o' , 'w' ),( 'c' , 'm' , NULL , 'a' , 'm' ),
( 'f' , 'o' ,9, 'm' , 'w' ),( 'f' , 'q' , NULL , 'o' , 'a' );
CREATE TABLE t3 LIKE t2;
SELECT * FROM t1 INNER JOIN t2 ON ( f5 = f1 );
INSERT INTO t3 SELECT * FROM t2 WHERE f3 = 'm' AND f2 = 'c' ;
2014-03-27 15:56:21 7f7f87ee9700 InnoDB: Warning: using a partial-field key prefix in search.
InnoDB: index `f5` of table `test`.`t2` /* Partition `p0`, Subpartition `p0sp2` */. Last data field length 768 bytes,
InnoDB: key ptr now exceeds key end by 762 bytes.
InnoDB: Key value in the MySQL format:
len 6; hex 000000000203; asc ;
2014-03-27 15:56:21 7f7f87ee9700 InnoDB: Assertion failure in thread 140185718134528 in file row0sel.cc line 2503
InnoDB: Failing assertion: 0
InnoDB: We intentionally generate a memory trap.
InnoDB: Submit a detailed bug report to http://bugs.mysql.com.
InnoDB: If you get repeated assertion failures or crashes, even
InnoDB: immediately after the mysqld startup, there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.6/en/forcing-innodb-recovery.html
InnoDB: about forcing recovery.
140327 15:56:21 [ERROR] mysqld got signal 6 ;
#5 0x00007f7f8602c6f0 in *__GI_abort () at abort.c:92
#6 0x0000000000c865cd in row_sel_convert_mysql_key_to_innobase (tuple=0x7f7f59d803d0, buf=0x7f7f59d6d81f "\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\2
45\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\24
5\245\245\245\245\245\245\245
\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245\245"..., buf_len=3136, index=0x7f7f59c837f8, key_ptr=0x7f7f59e0a38a "", key_len=6, trx=0x7f7f59cbd478) at 10.0/storage/xtradb/row/row0sel.cc:2503
#7 0x0000000000b6e6b5 in ha_innobase::index_read (this=0x7f7f59d6d088, buf=0x7f7f59c98088 "\375\001c", key_ptr=0x7f7f59e0a08a "", key_len=6, find_flag=HA_READ_KEY_EXACT) at 10.0/storage/xtradb/handler/ha_innodb.cc:8302
#8 0x0000000000b6f8d8 in ha_innobase::rnd_pos (this=0x7f7f59d6d088, buf=0x7f7f59c98088 "\375\001c", pos=0x7f7f59e0a08a "") at 10.0/storage/xtradb/handler/ha_innodb.cc:8854
#9 0x0000000000862614 in handler::ha_rnd_pos (this=0x7f7f59d6d088, buf=0x7f7f59c98088 "\375\001c", pos=0x7f7f59e0a08a "") at 10.0/sql/handler.cc:2530
#10 0x0000000000df7964 in ha_partition::rnd_pos (this=0x7f7f59d37888, buf=0x7f7f59c98088 "\375\001c", pos=0x7f7f59e0a088 "\002") at 10.0/sql/ha_partition.cc:5028
#11 0x00000000008625ca in handler::ha_rnd_pos (this=0x7f7f59d37888, buf=0x7f7f59c98088 "\375\001c", pos=0x7f7f59e0a088 "\002") at 10.0/sql/handler.cc:2530
#12 0x000000000097fe71 in QUICK_ROR_INTERSECT_SELECT::get_next (this=0x7f7f59ca72f0) at 10.0/sql/opt_range.cc:11424
#13 0x000000000098f15d in rr_quick (info=0x7f7f59c6b5e8) at 10.0/sql/records.cc:346
#14 0x00000000006d4a91 in join_init_read_record (tab=0x7f7f59c6b540) at 10.0/sql/sql_select.cc:18357
#15 0x00000000006d2a07 in sub_select (join=0x7f7f59c23700, join_tab=0x7f7f59c6b540, end_of_records=false) at 10.0/sql/sql_select.cc:17464
#16 0x00000000006d22ce in do_select (join=0x7f7f59c23700, fields=0x7f7f67fbf578, table=0x0, procedure=0x0) at 10.0/sql/sql_select.cc:17129
#17 0x00000000006afd5e in JOIN::exec_inner (this=0x7f7f59c23700) at 10.0/sql/sql_select.cc:3065
#18 0x00000000006ad270 in JOIN::exec (this=0x7f7f59c23700) at 10.0/sql/sql_select.cc:2355
#19 0x00000000006b0607 in mysql_select (thd=0x7f7f67fbb070, rref_pointer_array=0x7f7f67fbf6d8, tables=0x7f7f59c228d8, wild_num=1, fields=..., conds=0x7f7f59c234f8, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=3489925888, result=0x7f7f59c23668, unit=0x7f7f67fbed78, select_lex=0x7f7f67fbf460) at 10.0/sql/sql_select.cc:3293
#20 0x00000000006a6d1f in handle_select (thd=0x7f7f67fbb070, lex=0x7f7f67fbecb0, result=0x7f7f59c23668, setup_tables_done_option=1073741824) at 10.0/sql/sql_select.cc:372
#21 0x0000000000676549 in mysql_execute_command (thd=0x7f7f67fbb070) at 10.0/sql/sql_parse.cc:3555
#22 0x000000000067e2dd in mysql_parse (thd=0x7f7f67fbb070, rawbuf=0x7f7f59c22088 "INSERT INTO t3 SELECT * FROM t2 WHERE f3 = 'm' AND f2 ='c'", length=58, parser_state=0x7f7f87ee8610) at 10.0/sql/sql_parse.cc:6446
#23 0x00000000006710a4 in dispatch_command (command=COM_QUERY, thd=0x7f7f67fbb070, packet=0x7f7f682a0071 "INSERT INTO t3 SELECT * FROM t2 WHERE f3 = 'm' AND f2 ='c'", packet_length=58) at 10.0/sql/sql_parse.cc:1308
#24 0x0000000000670446 in do_command (thd=0x7f7f67fbb070) at 10.0/sql/sql_parse.cc:1005
#25 0x000000000078ae82 in do_handle_one_connection (thd_arg=0x7f7f67fbb070) at 10.0/sql/sql_connect.cc:1379
#26 0x000000000078abd5 in handle_one_connection (arg=0x7f7f67fbb070) at 10.0/sql/sql_connect.cc:1293
#27 0x0000000000a307d8 in pfs_spawn_thread (arg=0x7f7f67fe6170) at 10.0/storage/perfschema/pfs.cc:1853
#28 0x00007f7f87bc6b50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#29 0x00007f7f860d1a7d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
Stack trace from:
revision-id: psergey@askmonty.org-20140327090800-l3je8eqjrfx21iki
date: 2014-03-27 13:08:00 +0400
build-date: 2014-03-27 16:00:24 +0400
revno: 4116
branch-nick: 10.0
Jan Lindström (Inactive)
made changes -
2014-03-27 14:23
Field
Original Value
New Value
Status
Open
[ 1
]
In Progress
[ 3
]
Jan Lindström (Inactive)
made changes -
2014-04-17 16:22
Assignee
Jan Lindström
[ jplindst
]
Sergei Petrunia
[ psergey
]
Sergei Petrunia
made changes -
2014-04-18 13:16
Resolution
Fixed
[ 1
]
Status
In Progress
[ 3
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2014-06-13 15:06
Workflow
defaullt
[ 37602
]
MariaDB v2
[ 43096
]
Sergei Golubchik
made changes -
2021-12-06 21:39
Workflow
MariaDB v3
[ 62144
]
MariaDB v4
[ 147704
]
{"report":{"fcp":1635.5999999046326,"ttfb":385.89999985694885,"pageVisibility":"visible","entityId":33802,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"67acd897-5ddf-4173-b523-a718d8d2e2b9","navigationType":0,"readyForUser":1768.0999999046326,"redirectCount":0,"resourceLoadedEnd":1367.7999999523163,"resourceLoadedStart":391.7999999523163,"resourceTiming":[{"duration":506.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":391.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":391.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":898.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":507.5,"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":392.2000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":392.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":899.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":719.7000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":392.39999985694885,"connectEnd":392.39999985694885,"connectStart":392.39999985694885,"domainLookupEnd":392.39999985694885,"domainLookupStart":392.39999985694885,"fetchStart":392.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":903.7000000476837,"responseEnd":1112.0999999046326,"responseStart":924.7999999523163,"secureConnectionStart":392.39999985694885},{"duration":947.7999999523163,"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":392.5,"connectEnd":392.5,"connectStart":392.5,"domainLookupEnd":392.5,"domainLookupStart":392.5,"fetchStart":392.5,"redirectEnd":0,"redirectStart":0,"requestStart":904.8999998569489,"responseEnd":1340.2999999523163,"responseStart":942.7000000476837,"secureConnectionStart":392.5},{"duration":536.7999999523163,"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":392.7000000476837,"connectEnd":392.7000000476837,"connectStart":392.7000000476837,"domainLookupEnd":392.7000000476837,"domainLookupStart":392.7000000476837,"fetchStart":392.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":905.5,"responseEnd":929.5,"responseStart":926.2999999523163,"secureConnectionStart":392.7000000476837},{"duration":540,"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":392.89999985694885,"connectEnd":392.89999985694885,"connectStart":392.89999985694885,"domainLookupEnd":392.89999985694885,"domainLookupStart":392.89999985694885,"fetchStart":392.89999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":905.7999999523163,"responseEnd":932.8999998569489,"responseStart":927.0999999046326,"secureConnectionStart":392.89999985694885},{"duration":540.5,"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":393,"connectEnd":393,"connectStart":393,"domainLookupEnd":393,"domainLookupStart":393,"fetchStart":393,"redirectEnd":0,"redirectStart":0,"requestStart":906.0999999046326,"responseEnd":933.5,"responseStart":927.8999998569489,"secureConnectionStart":393},{"duration":510.5,"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":393.2999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":393.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":903.7999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":542.7000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":393.5,"connectEnd":393.5,"connectStart":393.5,"domainLookupEnd":393.5,"domainLookupStart":393.5,"fetchStart":393.5,"redirectEnd":0,"redirectStart":0,"requestStart":906.2000000476837,"responseEnd":936.2000000476837,"responseStart":934,"secureConnectionStart":393.5},{"duration":510.40000009536743,"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":393.59999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":393.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":904,"responseStart":0,"secureConnectionStart":0},{"duration":543.5999999046326,"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":393.7999999523163,"connectEnd":393.7999999523163,"connectStart":393.7999999523163,"domainLookupEnd":393.7999999523163,"domainLookupStart":393.7999999523163,"fetchStart":393.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":906.5999999046326,"responseEnd":937.3999998569489,"responseStart":934.7000000476837,"secureConnectionStart":393.7999999523163},{"duration":967.7000000476837,"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":399.2999999523163,"connectEnd":399.2999999523163,"connectStart":399.2999999523163,"domainLookupEnd":399.2999999523163,"domainLookupStart":399.2999999523163,"fetchStart":399.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1047.8999998569489,"responseEnd":1367,"responseStart":1362.7000000476837,"secureConnectionStart":399.2999999523163},{"duration":968.2999999523163,"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":399.5,"connectEnd":399.5,"connectStart":399.5,"domainLookupEnd":399.5,"domainLookupStart":399.5,"fetchStart":399.5,"redirectEnd":0,"redirectStart":0,"requestStart":1220.3999998569489,"responseEnd":1367.7999999523163,"responseStart":1366.3999998569489,"secureConnectionStart":399.5},{"duration":292.90000009536743,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1270.8999998569489,"connectEnd":1270.8999998569489,"connectStart":1270.8999998569489,"domainLookupEnd":1270.8999998569489,"domainLookupStart":1270.8999998569489,"fetchStart":1270.8999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":1530.3999998569489,"responseEnd":1563.7999999523163,"responseStart":1563,"secureConnectionStart":1270.8999998569489}],"fetchStart":0,"domainLookupStart":136,"domainLookupEnd":148,"connectStart":149,"connectEnd":177,"secureConnectionStart":165,"requestStart":178,"responseStart":386,"responseEnd":396,"domLoading":390,"domInteractive":1849,"domContentLoadedEventStart":1849,"domContentLoadedEventEnd":1921,"domComplete":2770,"loadEventStart":2770,"loadEventEnd":2771,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1820.2999999523163},{"name":"bigPipe.sidebar-id.end","time":1821.0999999046326},{"name":"bigPipe.activity-panel-pipe-id.start","time":1821.2999999523163},{"name":"bigPipe.activity-panel-pipe-id.end","time":1823.2999999523163},{"name":"activityTabFullyLoaded","time":1938.5}],"measures":[],"correlationId":"7d963419373125","effectiveType":"4g","downlink":9.3,"rtt":0,"serverDuration":122,"dbReadsTimeInMs":25,"dbConnsTimeInMs":35,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}