~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/r/log_tables_debug.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET @old_general_log= @@global.general_log;
 
2
SET @old_general_log_file= @@global.general_log_file;
 
3
SET @old_slow_query_log= @@global.slow_query_log;
 
4
SET @old_slow_query_log_file= @@global.slow_query_log_file;
 
5
#
 
6
# Bug#45387 Information about statement id for prepared
 
7
#           statements missed from general log
 
8
#
 
9
SET @@global.general_log = ON;
 
10
SET @@global.general_log_file = 'bug45387_general.log';
 
11
SET SESSION debug='+d,reset_log_last_time';
 
12
FLUSH LOGS;
 
13
SET @@global.general_log = @old_general_log;
 
14
SET @@global.general_log_file = @old_general_log_file;
 
15
SET SESSION debug='-d';
 
16
Bug#45387: ID match.
 
17
End of 5.1 tests
 
18
#
 
19
# Cleanup
 
20
#
 
21
SET global general_log = @old_general_log;
 
22
SET global general_log_file = @old_general_log_file;
 
23
SET global slow_query_log = @old_slow_query_log;
 
24
SET global slow_query_log_file = @old_slow_query_log_file;