mirror of
https://github.com/MariaDB/server.git
synced 2025-11-09 11:41:36 +03:00
Tests on clang-20/21 had both of these tests overrunning the stack. The check_stack_overrun function checked the function earlier with a 2*STACK_MIN_SIZE margin. The exection within the processing is deeper then when check_stack_overrun was called. Raising STACK_MIN_SIZE to 44k was sufficient (and 40k wasn't oufficient). execution_constants also tested however the topic mention tests are bigger. Perfscheam tests * perfschema.statement_program_nesting_event_check * perfschema.statement_program_nested * perfschema.max_program_zero A small increase to the test thread-stack-size on statement_program_lost_inst allows this test to continue to pass.
49 lines
1.8 KiB
Plaintext
49 lines
1.8 KiB
Plaintext
#-------------------------------------------------------------
|
|
# Tests for PERFORMANCE_SCHEMA stored programs instrumentation
|
|
#-------------------------------------------------------------
|
|
|
|
# Test to check the values populated in NESTING_EVENT_TYPE
|
|
# columns of events_statements_current/history/history_long PS tables.
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
--source include/have_innodb.inc
|
|
--source include/not_msan_with_debug.inc
|
|
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
|
|
--echo #----------------------------
|
|
--echo # Non-nested Stored programs.
|
|
--echo #----------------------------
|
|
--source suite/perfschema/include/program_setup.inc
|
|
ALTER TABLE t2 ENGINE=InnoDB;
|
|
--source suite/perfschema/include/program_execution.inc
|
|
|
|
SELECT EVENT_NAME, SQL_TEXT, OBJECT_NAME, NESTING_EVENT_TYPE, NESTING_EVENT_LEVEL
|
|
FROM performance_schema.events_statements_history_long
|
|
WHERE CURRENT_SCHEMA='stored_programs' AND
|
|
(SQL_TEXT not like '%count(*) = %' OR SQL_TEXT IS NULL)
|
|
ORDER BY OBJECT_NAME,NESTING_EVENT_LEVEL,SQL_TEXT;
|
|
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
|
|
# Clean-up
|
|
--source suite/perfschema/include/program_cleanup.inc
|
|
|
|
--echo #------------------------
|
|
--echo # Nested stored programs.
|
|
--echo #------------------------
|
|
--source suite/perfschema/include/program_nested_setup.inc
|
|
ALTER TABLE t2 ENGINE=InnoDB;
|
|
--source suite/perfschema/include/program_nested_execution.inc
|
|
|
|
SELECT EVENT_NAME, SQL_TEXT, OBJECT_NAME, NESTING_EVENT_TYPE, NESTING_EVENT_LEVEL
|
|
FROM performance_schema.events_statements_history_long
|
|
WHERE CURRENT_SCHEMA='nested_sp'
|
|
ORDER BY OBJECT_NAME, NESTING_EVENT_LEVEL, SQL_TEXT, EVENT_NAME;
|
|
|
|
TRUNCATE TABLE performance_schema.events_statements_history_long;
|
|
|
|
# Clean-up
|
|
--source suite/perfschema/include/program_nested_cleanup.inc
|