Details
Assignee
UnassignedUnassignedReporter
csfuzzcsfuzzUpstream Bug URL
Needs QA
YesAffects versions
Priority
High
Details
Details
Assignee
Unassigned
UnassignedReporter
csfuzz
csfuzzUpstream Bug URL
Needs QA
Yes
Affects versions
Priority
Smart Checklist
Smart Checklist
Smart Checklist
Created November 1, 2023 at 8:43 AM
Updated March 6, 2024 at 9:30 AM
Start two Percona servers and create database test.
Then use the following two scripts to create the table (create-MYISAM.sql and create-MEMORY.sql). The only difference is that the engine is different.
Then the same select statement is executed separately, and the returned results are inconsistent.
MYISAM:
Empty set (0.00 sec)
MEMORY:
------------------------+
c0
c1
c2
c3
------------------------+
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
------------------------+
4 rows in set (0.00 sec)
These are simple database operations, there should not be such inconsistent behavior.