Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
12.3
-
Can result in unexpected behaviour
-
Q2/2026 Server Maintenance
Description
Bug found while testing MDEV-38701
Replay fails because There is no create database m10; stmt in context
case)
create database m8;use m8;
create database m10;
create table m10.t1(a int);
explain select * from m10.t1;
context:
------------
CREATE DATABASE IF NOT EXISTS m8;
USE m8;
CREATE TABLE `m10`.`t1` (
`a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci; //Fails
explain select * from m10.t1; //Fails
Attachments
Issue Links
- relates to
-
MDEV-38701 Optimizer Trace Replay: Q1 2026 Dev Sprint Work 1
-
- In Testing
-