mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
rename debug variable to debug_dbug, to make test pass in release builds
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
This commit is contained in:
@@ -20,11 +20,11 @@ delimiter //;
|
||||
create procedure setcrash(IN i INT)
|
||||
begin
|
||||
CASE i
|
||||
WHEN 1 THEN SET SESSION debug="d,crash_commit_after_prepare";
|
||||
WHEN 2 THEN SET SESSION debug="d,crash_commit_after_log";
|
||||
WHEN 3 THEN SET SESSION debug="d,crash_commit_before_unlog";
|
||||
WHEN 4 THEN SET SESSION debug="d,crash_commit_after";
|
||||
WHEN 5 THEN SET SESSION debug="d,crash_commit_before";
|
||||
WHEN 1 THEN SET SESSION debug_dbug="d,crash_commit_after_prepare";
|
||||
WHEN 2 THEN SET SESSION debug_dbug="d,crash_commit_after_log";
|
||||
WHEN 3 THEN SET SESSION debug_dbug="d,crash_commit_before_unlog";
|
||||
WHEN 4 THEN SET SESSION debug_dbug="d,crash_commit_after";
|
||||
WHEN 5 THEN SET SESSION debug_dbug="d,crash_commit_before";
|
||||
ELSE BEGIN END;
|
||||
END CASE;
|
||||
end //
|
||||
|
||||
Reference in New Issue
Block a user