[MDEV-4317] Possible bug: direct use of my_read() function Created: 2013-03-22 Updated: 2013-04-04 Resolved: 2013-04-04 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | None |
| Affects Version/s: | 10.0.1 |
| Fix Version/s: | 10.0.2 |
| Type: | Bug | Priority: | Major |
| Reporter: | Pavel Ivanov | Assignee: | Sergei Golubchik |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Function my_b_fill() in mysys/mf_iocache2.c calls my_read() directly on line 222, not through mysql_file_read() as it is done in all other places. Please check whether this is a bug and needs to be changed. I'm not saying confidently that this is a bug because changing my_read to mysql_file_read breaks perfschema.relaylog test in a suspicious way. |
| Comments |
| Comment by Sergei Golubchik [ 2013-04-04 ] |
|
I think new result (of perfschema.relaylog) is correct. Like, one cannot expect that master-index file was never read in the test, not even after show binlog events. The old result shows that it wasn't, the new results shows that is was. |