No Picture
MinervaDB

MySQL Scalar Subquery Unnesting transformation

Scalar subquery unnesting is a transformation technique that the MySQL optimizer uses to optimize queries involving scalar subqueries. Scalar subqueries return a single value. You typically use them in expressions or as part of the […]

No Picture
MinervaDB

How invisible indexes in MySQL 8 work?

In MySQL 8, invisible indexes are a feature that allows you to create an index without it being used by the optimizer. This can be useful in situations where you want to test the impact […]

No Picture
MinervaDB

Linear Trees in InnoDB

Introduction In InnoDB, a linear tree is a type of data structure used for indexing and searching data. Linear trees are also known as B+ trees. The key characteristic of a linear tree is that […]