Skip to content

Commit 09b825b

Browse files
committed
MDEV-9451: Remove innodb_buffer_pool_populate from xtradb
innodb_buffer_pool_populate has not had an effect since 10.0.23 in commit 1e270d5 when its functionality was removed. As we've only just enabled LIBNUMA in MDEV-10829 it isn't logical to have innodb_buffer_pool_populate aliasing for innodb_numa_interleave this late in the game. So the simpliest way is just to remove innodb_buffer_pool_populate. Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
1 parent 3d0d290 commit 09b825b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

storage/xtradb/handler/ha_innodb.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20265,11 +20265,6 @@ static MYSQL_SYSVAR_LONGLONG(buffer_pool_size, innobase_buffer_pool_size,
2026520265
"The size of the memory buffer InnoDB uses to cache data and indexes of its tables.",
2026620266
NULL, NULL, 128*1024*1024L, 5*1024*1024L, LONGLONG_MAX, 1024*1024L);
2026720267

20268-
static MYSQL_SYSVAR_BOOL(buffer_pool_populate, srv_numa_interleave,
20269-
PLUGIN_VAR_NOCMDARG | PLUGIN_VAR_READONLY,
20270-
"Depricated. This option is temporary alias of --innodb-numa-interleave.",
20271-
NULL, NULL, FALSE);
20272-
2027320268
static MYSQL_SYSVAR_ENUM(foreground_preflush, srv_foreground_preflush,
2027420269
PLUGIN_VAR_OPCMDARG,
2027520270
"The algorithm InnoDB uses for the query threads at sync preflush. "

0 commit comments

Comments
 (0)