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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_loaddata_fatal.result

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-21 15:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20100621153105-pbbz3t6nyrf9t2zq
Tags: upstream-5.1.48
ImportĀ upstreamĀ versionĀ 5.1.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
start slave;
7
7
CREATE TABLE t1 (a INT, b INT);
8
8
INSERT INTO t1 VALUES (1,10);
9
 
SHOW SLAVE STATUS;
10
 
Slave_IO_State  #
11
 
Master_Host     127.0.0.1
12
 
Master_User     root
13
 
Master_Port     MASTER_PORT
14
 
Connect_Retry   1
15
 
Master_Log_File master-bin.000001
16
 
Read_Master_Log_Pos     290
17
 
Relay_Log_File  #
18
 
Relay_Log_Pos   #
19
 
Relay_Master_Log_File   master-bin.000001
20
 
Slave_IO_Running        Yes
21
 
Slave_SQL_Running       Yes
22
 
Replicate_Do_DB 
23
 
Replicate_Ignore_DB     
24
 
Replicate_Do_Table      
25
 
Replicate_Ignore_Table  #
26
 
Replicate_Wild_Do_Table 
27
 
Replicate_Wild_Ignore_Table     
28
 
Last_Errno      0
29
 
Last_Error      
30
 
Skip_Counter    0
31
 
Exec_Master_Log_Pos     290
32
 
Relay_Log_Space #
33
 
Until_Condition None
34
 
Until_Log_File  
35
 
Until_Log_Pos   0
36
 
Master_SSL_Allowed      No
37
 
Master_SSL_CA_File      
38
 
Master_SSL_CA_Path      
39
 
Master_SSL_Cert 
40
 
Master_SSL_Cipher       
41
 
Master_SSL_Key  
42
 
Seconds_Behind_Master   #
43
 
Master_SSL_Verify_Server_Cert   No
44
 
Last_IO_Errno   #
45
 
Last_IO_Error   #
46
 
Last_SQL_Errno  0
47
 
Last_SQL_Error  
48
9
LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE t1;
49
 
SHOW SLAVE STATUS;
50
 
Slave_IO_State  #
51
 
Master_Host     127.0.0.1
52
 
Master_User     root
53
 
Master_Port     MASTER_PORT
54
 
Connect_Retry   1
55
 
Master_Log_File master-bin.000001
56
 
Read_Master_Log_Pos     560
57
 
Relay_Log_File  #
58
 
Relay_Log_Pos   #
59
 
Relay_Master_Log_File   master-bin.000001
60
 
Slave_IO_Running        Yes
61
 
Slave_SQL_Running       No
62
 
Replicate_Do_DB 
63
 
Replicate_Ignore_DB     
64
 
Replicate_Do_Table      
65
 
Replicate_Ignore_Table  #
66
 
Replicate_Wild_Do_Table 
67
 
Replicate_Wild_Ignore_Table     
68
 
Last_Errno      1593
69
 
Last_Error      Fatal error: Not enough memory
70
 
Skip_Counter    0
71
 
Exec_Master_Log_Pos     325
72
 
Relay_Log_Space #
73
 
Until_Condition None
74
 
Until_Log_File  
75
 
Until_Log_Pos   0
76
 
Master_SSL_Allowed      No
77
 
Master_SSL_CA_File      
78
 
Master_SSL_CA_Path      
79
 
Master_SSL_Cert 
80
 
Master_SSL_Cipher       
81
 
Master_SSL_Key  
82
 
Seconds_Behind_Master   #
83
 
Master_SSL_Verify_Server_Cert   No
84
 
Last_IO_Errno   #
85
 
Last_IO_Error   #
86
 
Last_SQL_Errno  1593
87
 
Last_SQL_Error  Fatal error: Not enough memory
 
10
--source include/wait_for_slave_sql_error_and_skip.inc
 
11
Last_SQL_Error = Fatal error: Not enough memory
88
12
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
89
 
START SLAVE;
 
13
include/start_slave.inc
90
14
DROP TABLE t1;