mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / ndb_team / r / ndb_backup_print.result
blob7fa073bafb5ff8fbdbb48d024d89496c2158ecea
1 use test;
2 drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
3 Connected to Management Server at: :
4 Waiting for completed, this may take several minutes
5 Node : Backup  started from node 
6 Node : Backup  started from node  completed
7  StartGCP:  StopGCP: 
8  #Records:  #LogRecords: 
9  Data:  bytes Log:  bytes
10 create table t1
11 (pk int key
12 ,a1 BIT(1), a2 BIT(5), a3 BIT(33), a4 BIT(63), a5 BIT(64)
13 ,b1 TINYINT, b2 TINYINT UNSIGNED
14 ,c1 SMALLINT, c2 SMALLINT UNSIGNED
15 ,d1 INT, d2 INT UNSIGNED
16 ,e1 BIGINT, e2 BIGINT UNSIGNED
17 ,f1 CHAR(1) BINARY, f2 CHAR(32) BINARY, f3 CHAR(255) BINARY
18 ,g1 VARCHAR(32) BINARY, g2 VARCHAR(255) BINARY, g3 VARCHAR(1000) BINARY
19 ,h1 BINARY(1), h2 BINARY(8), h3 BINARY(255)
20 ,i1 VARBINARY(32), i2 VARBINARY(255), i3 VARBINARY(1000)
21 ) engine ndb;
22 insert into t1 values
24 ,0x1, 0x17, 0x789a, 0x789abcde, 0xfedc0001
25 ,127, 255
26 ,32767, 65535
27 ,2147483647, 4294967295
28 ,9223372036854775807, 18446744073709551615
29 ,'1','12345678901234567890123456789012','123456789'
30   ,'1','12345678901234567890123456789012','123456789'
31   ,0x12,0x123456789abcdef0, 0x012345
32 ,0x12,0x123456789abcdef0, 0x00123450
34 insert into t1 values
36 ,0, 0, 0, 0, 0
37 ,-128, 0
38 ,-32768, 0
39 ,-2147483648, 0
40 ,-9223372036854775808, 0
41 ,'','',''
42   ,'','',''
43   ,0x0,0x0,0x0
44 ,0x0,0x0,0x0
46 insert into t1 values
48 ,NULL,NULL,NULL,NULL,NULL
49 ,NULL,NULL
50 ,NULL,NULL
51 ,NULL,NULL
52 ,NULL,NULL
53 ,NULL,NULL,NULL
54 ,NULL,NULL,NULL
55 ,NULL,NULL,NULL
56 ,NULL,NULL,NULL
58 Connected to Management Server at: :
59 Waiting for completed, this may take several minutes
60 Node : Backup  started from node 
61 Node : Backup  started from node  completed
62  StartGCP:  StopGCP: 
63  #Records:  #LogRecords: 
64  Data:  bytes Log:  bytes
65 drop table t1;