NEW_MODE
Explains the `NEW_MODE` system variable, introduced in MariaDB 11.4, which allows users to opt-in to new, potentially incompatible behaviors or optimizations that will become default in future version
Syntax
SET [GLOBAL|SESSION] new_mode = 'fix_1[,fix_2]...';Example
SET GLOBAL new_mode = 'FIX_DISK_TMPTABLE_COSTS';
...
SET new_mode = 'FIX_DISK_TMPTABLE_COSTS,FIX_INDEX_STATS_FOR_ALL_NULLS';
...
SET SESSION new_mode = 'FIX_INDEX_STATS_FOR_ALL_NULLS';
SET new_mode = '';Available NEW_MODE Flags
FIX_DISK_TMPTABLE_COSTS
FIX_INDEX_STATS_FOR_ALL_NULLS
Last updated
Was this helpful?

