1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Post-merge fix: modify regular expression to better handle 24 hour

times (ie: 2:16:20).
This commit is contained in:
Davi Arnaut
2009-06-15 20:27:27 -03:00
parent 2a8bad1767
commit 4b691acec3
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ SET @old_general_log_file= @@global.general_log_file;
SET @old_slow_query_log= @@global.slow_query_log;
SET @old_slow_query_log_file= @@global.slow_query_log_file;
#
# Bug#45387 Information about statement id for prepared
# Bug#45387 Information about statement id for prepared
# statements missed from general log
#
SET @@global.general_log = ON;
@ -12,7 +12,7 @@ SET SESSION debug='+d,reset_log_last_time';
FLUSH LOGS;
SET @@global.general_log = @old_general_log;
SET @@global.general_log_file = @old_general_log_file;
SET SESSION debug='-d,reset_log_last_time';
SET SESSION debug='-d';
Bug#45387: ID match.
End of 5.1 tests
#