eclipse debug运行mysqld
1、在innobase/handler/ha_innodb.cc 函数开头ha_innobase::index_read设置断点
2、debug运行mysqld
mysql客户端连上执行简单select
mysql> use test; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> select * from t1;
复制
可以看到在断点处中断,可以获取call stack,看到该断点处的上下文
call stack
ha_innobase::index_read() at ha_innodb.cc:8,660 0x191a558 ha_innobase::index_first() at ha_innodb.cc:9,171 0x191b9e8 ha_innobase::rnd_next() at ha_innodb.cc:9,269 0x191bc36 handler::ha_rnd_next() at handler.cc:2,962 0xf345ef rr_sequential() at records.cc:517 0x1490802 join_init_read_record() at sql_executor.cc:2,504 0x152c89b sub_select() at sql_executor.cc:1,284 0x152997f do_select() at sql_executor.cc:957 0x1529304 JOIN::exec() at sql_executor.cc:206 0x15271c0 handle_query() at sql_select.cc:191 0x15c409a execute_sqlcom_select() at sql_parse.cc:5,155 0x1578749 mysql_execute_command() at sql_parse.cc:2,826 0x1571528 mysql_parse() at sql_parse.cc:5,584 0x1579655 dispatch_command() at sql_parse.cc:1,491 0x156e1b7 do_command() at sql_parse.cc:1,032 0x156cff0 handle_connection() at connection_handler_per_thread.cc:313 0x16a6619 pfs_spawn_thread() at pfs.cc:2,197 0x1d56ac8 start_thread() at 0x35d00079d1 clone() at 0x35cfce8b6d
复制
thd->m_query_string 可以看到执行的SQL文本
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
评论
相关阅读
【专家有话说第五期】在不同年龄段,DBA应该怎样规划自己的职业发展?
墨天轮编辑部
1328次阅读
2025-03-13 11:40:53
MySQL8.0统计信息总结
闫建(Rock Yan)
501次阅读
2025-03-17 16:04:03
2月“墨力原创作者计划”获奖名单公布
墨天轮编辑部
470次阅读
2025-03-13 14:38:19
SQL优化 - explain查看SQL执行计划(一)
金同学
398次阅读
2025-03-13 16:04:22
MySQL突然崩溃?教你用gdb解剖core文件,快速锁定“元凶”!
szrsu
378次阅读
2025-03-13 00:29:43
MySQL生产实战优化(利用Index skip scan优化性能提升257倍)
chengang
331次阅读
2025-03-17 10:36:40
MySQL数据库当前和历史事务分析
听见风的声音
307次阅读
2025-04-01 08:47:17
MySQL 生产实践-Update 二级索引导致的性能问题排查
chengang
253次阅读
2025-03-28 16:28:31
墨天轮个人数说知识点合集
JiekeXu
244次阅读
2025-04-01 15:56:03
一键装库脚本3分钟极速部署,传统耗时砍掉95%!
IT邦德
243次阅读
2025-03-10 07:58:44