~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert.result

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
6
15
15
drop table t1;
16
16
create table t1 (id int not null auto_increment primary key, username varchar(32) not null, unique (username));
17
 
insert into t1 values (0,"mysql");
18
 
insert into t1 values (0,"mysql ab");
19
 
insert into t1 values (0,"mysql a");
20
 
insert into t1 values (0,"r1manic");
21
 
insert into t1 values (0,"r1man");
 
17
insert into t1 values (NULL,"mysql");
 
18
insert into t1 values (NULL,"mysql ab");
 
19
insert into t1 values (NULL,"mysql a");
 
20
insert into t1 values (NULL,"r1manic");
 
21
insert into t1 values (NULL,"r1man");
22
22
drop table t1;
23
 
create table t1 (a int not null auto_increment, primary key (a), t timestamp, c char(10) default "hello", i int);
24
 
insert into t1 values (default,default,default,default), (default,default,default,default), (4,0,"a",5),(default,default,default,default);
25
 
select a,t>0,c,i from t1;
26
 
a       t>0     c       i
27
 
1       1       hello   NULL
28
 
2       1       hello   NULL
29
 
4       0       a       5
30
 
5       1       hello   NULL
 
23
create table t1 (a int not null auto_increment, primary key (a), t timestamp null, c char(10) default "hello", i int);
 
24
insert into t1 values (default,default,default,default);
 
25
insert into t1 values (default,default,default,default);
 
26
insert into t1 values (4,0,"a",5);
 
27
ERROR HY000: Received an invalid timestamp value '0'.
 
28
insert into t1 values (default,default,default,default);
 
29
select a,t is not null,c,i from t1;
 
30
a       t is not null   c       i
 
31
1       0       hello   NULL
 
32
2       0       hello   NULL
 
33
3       0       hello   NULL
31
34
truncate table t1;
32
35
insert into t1 set a=default,t=default,c=default;
33
36
insert into t1 set a=default,t=default,c=default,i=default;
34
 
insert into t1 set a=4,t=0,c="a",i=5;
35
 
insert into t1 set a=5,t=0,c="a",i=null;
 
37
insert into t1 set a=4,t= NULL,c="a",i=5;
 
38
insert into t1 set a=5,t= NULL,c="a",i=null;
36
39
insert into t1 set a=default,t=default,c=default,i=default;
37
 
select a,t>0,c,i from t1;
38
 
a       t>0     c       i
39
 
1       1       hello   NULL
40
 
2       1       hello   NULL
 
40
select a,t is not null,c,i from t1;
 
41
a       t is not null   c       i
 
42
1       0       hello   NULL
 
43
2       0       hello   NULL
41
44
4       0       a       5
42
45
5       0       a       NULL
43
 
6       1       hello   NULL
 
46
6       0       hello   NULL
44
47
drop table t1;
45
48
create table t1 (id int NOT NULL DEFAULT 8);
46
49
insert into t1 values(NULL);
53
56
create table t1 (email varchar(50));
54
57
insert into t1 values ('sasha@mysql.com'),('monty@mysql.com'),('foo@hotmail.com'),('foo@aol.com'),('bar@aol.com');
55
58
create table t2(id int not null auto_increment primary key, t2 varchar(50), unique(t2));
56
 
insert delayed into t2 (t2) select distinct substring(email, locate('@', email)+1) from t1;
 
59
insert into t2 (t2) select distinct substring(email, locate('@', email)+1) from t1;
57
60
select * from t2;
58
61
id      t2
59
62
1       mysql.com
74
77
count(*)
75
78
500
76
79
insert into  t2 select t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
 
80
ERROR HY000: Temporary table too large, rerun with SQL_BIG_RESULT.
 
81
insert into  t2 select SQL_BIG_RESULT t1.* from t1, t2 t, t3 where  t1.id1 = t.id2 and t.id2 = t3.id3;
77
82
select count(*) from t2;
78
83
count(*)
79
84
25500
 
85
COMMIT;
80
86
drop table t1,t2,t3;
81
87
create table t1 (a int, b int);
82
88
insert into t1 (a,b) values (a,b);