~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
CREATE TABLE t1 (a INT, b INT);
 
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     291
 
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     291
 
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
LOAD DATA INFILE '../std_data_ln/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     466
 
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     326
 
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
 
88
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
 
89
START SLAVE;
 
90
DROP TABLE t1;