Details
Description
SET JOIN_CACHE_LEVEL=4
CREATE TABLE `t1` (
`bill_no` bigint(20) not NULL,
`resource_id` bigint(20) not NULL,
`item_code` int(11) not NULL,
`acct_id` bigint(20) not NULL
) ENGINE=innodb ;
CREATE TABLE `t2` (
`ACCT_ID` bigint(20) NOT NULL,
`RESOURCE_ID` bigint(20) NOT NULL,
`BILL_NO` bigint(20) NOT NULL,
`ITEM_CODE` int(11) NOT NULL,
`BILL_FEE` bigint(20) NOT NULL,
PRIMARY KEY (`ACCT_ID`,`RESOURCE_ID`,`BILL_NO`,`ITEM_CODE`,`BILL_FEE`)
) ENGINE=innodb DEFAULT CHARSET=utf8 ;
insert into t1 values(200003728758091,1000040460,1314831,10000026910);
insert into t2 values(10000026910,1000040460,200003728758091,1314831,100);
SELECT a.bill_no, b.bill_no,a.item_code, b.item_code ,a.acct_id, b.acct_id, a.resource_id,b.resource_id FROM t2 a , t1 b where a.bill_no = b.bill_no and a.item_code = b.item_code AND a.acct_id = b.acct_id AND a.resource_id = b.resource_id limit 1;
Empty set (0.004 sec)
SELECT a.bill_no, b.bill_no,a.item_code, b.item_code ,a.acct_id, b.acct_id, a.resource_id,b.resource_id FROM t2 a , t1 b where a.bill_no = b.bill_no and a.item_code = b.item_code AND a.resource_id = b.resource_id limit 1;
bill_no | bill_no | item_code | item_code | acct_id | acct_id | resource_id | resource_id |
200003728758091 | 200003728758091 | 1314831 | 1314831 | 10000026910 | 10000026910 | 1000040460 | 1000040460 |
find hash key order is not same
MariaDB [test]> explain SELECT a.bill_no, b.bill_no,a.item_code, b.item_code ,a.acct_id, b.`acct_id`, a.resource_id,b.resource_id FROM t2 a , t1 b where a.bill_no = b.bill_no and a.item_code = b.item_code AND a.acct_id = b.acct_id AND a.resource_id = b.resource_id limit 1;;
put record (build hash table)
Breakpoint 18, JOIN_CACHE_HASHED::key_search (this=0x629000b68290, key=0x617000864675 "K\325\064\377", <incomplete sequence \346\265>, key_len=28, key_ref_ptr=0x7fc4fb077b20)
at /data01/chuhx_mdb4/mariadb-10.4.8/sql/sql_join_cache.cc:3096
3096 bool is_found= FALSE;
(gdb) p *(long long *)(key)
$395 = 200003728758091 BILL_NO
(gdb) p *(long long *)(key+8)
$401 = 1000040460 RESOURCE_ID
(gdb) p *(long long *)(key+8+8)
$402 = 10000026910 ACCT_ID
(gdb) p *(int *)(key+8+8+8)
$404 = 1314831 ITEM_CODE
(gdb) c
get_matching_chain_by_join_key (match )
(gdb) p *(long long *)(key)
$406 = 200003728758091 BILL_NO
(gdb) p *(long long *)(key+8)
$408 = 1000040460 RESOURCE_ID
(gdb) p *(int *)(key+8+8)
$410 = 1314831 ITEM_CODE
(gdb) p *(long long *)(key+8+8+4)
$412 = 10000026910 ACCT_ID
order is not same