mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
bd3ac6758a
still cannot be enabled permanently, but at least they could be run manually, if needed
10 lines
485 B
PHP
10 lines
485 B
PHP
# The performance schema internal structures are compiled with PFS_ALIGN,
|
|
# and the sizeof() structures is platform dependent.
|
|
#
|
|
# For tests sensitive to the internal sizes (show engine performance_schema
|
|
# status), make sure we use a platform with aligned memory.
|
|
|
|
if (`SELECT count(*)=0 from performance_schema.session_connect_attrs where PROCESSLIST_ID = connection_id() and ATTR_NAME = '_os' and ATTR_VALUE in ('Linux', 'Windows')`)
|
|
{
|
|
skip Need a platform with aligned memory;
|
|
}
|