~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/metadata.test

Renamed more stuff to drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
drop table if exists t1,t2;
7
7
--enable_warnings
8
8
--enable_metadata
 
9
# PS protocol gives slightly different metadata
 
10
--disable_ps_protocol
9
11
 
10
12
#
11
13
# First some simple tests
13
15
 
14
16
select 1, 1.0, -1, "hello", NULL;
15
17
 
16
 
create table t1 (a int, b int, c int, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), j date, k timestamp, l datetime, m enum('a','b'), n char(10));
 
18
create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp, l datetime, m enum('a','b'), n set('a','b'), o char(10));
17
19
select * from t1;
18
20
select a b, b c from t1 as t2;
19
21
drop table t1;
22
24
# Test metadata from ORDER BY (Bug #2654)
23
25
#
24
26
 
25
 
CREATE TABLE t1 (id int default NULL, data varchar(255) default NULL);
 
27
CREATE TABLE t1 (id tinyint(3) default NULL, data varchar(255) default NULL);
26
28
INSERT INTO t1 VALUES (1,'male'),(2,'female');
27
 
CREATE TABLE t2 (id int default NULL, data char(3) default '0');
 
29
CREATE TABLE t2 (id tinyint(3) unsigned default NULL, data char(3) default '0');
28
30
INSERT INTO t2 VALUES (1,'yes'),(2,'no');
29
31
 
30
32
select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id;
50
52
#
51
53
# Bug #11688: Bad mysql_info() results in multi-results
52
54
#
53
 
# No multi-statements in Drizzle
54
 
#
55
 
#--enable_info
56
 
#delimiter //;
57
 
#create table t1 (i int);
58
 
#insert into t1 values (1),(2),(3);
59
 
#select * from t1 where i = 2;
60
 
#drop table t1;//
61
 
#delimiter ;//
62
 
#--disable_info
 
55
--enable_info
 
56
delimiter //;
 
57
create table t1 (i int);
 
58
insert into t1 values (1),(2),(3);
 
59
select * from t1 where i = 2;
 
60
drop table t1;//
 
61
delimiter ;//
 
62
--disable_info
 
63
 
 
64
#
 
65
# Bug #20191: getTableName gives wrong or inconsistent result when using VIEWs
 
66
#
 
67
--enable_metadata
 
68
create table t1 (id int(10));
 
69
insert into t1 values (1);
 
70
CREATE  VIEW v1 AS select t1.id as id from t1;
 
71
CREATE  VIEW v2 AS select t1.id as renamed from t1;
 
72
CREATE  VIEW v3 AS select t1.id + 12 as renamed from t1;
 
73
select * from v1 group by id limit 1;
 
74
select * from v1 group by id limit 0;
 
75
select * from v1 where id=1000 group by id;
 
76
select * from v1 where id=1 group by id;
 
77
select * from v2 where renamed=1 group by renamed;
 
78
select * from v3 where renamed=1 group by renamed;
 
79
drop table t1;
 
80
drop view v1,v2,v3;
 
81
--disable_metadata
63
82
 
64
83
# End of 4.1 tests
65
84
 
71
90
select a.* from (select 214748364 as v_small) a;
72
91
--disable_metadata
73
92
 
 
93
#
 
94
# Bug #28898: table alias and database name of VIEW columns is empty in the
 
95
# metadata of # SELECT statement where join is executed via temporary table.
 
96
#
 
97
 
 
98
CREATE TABLE t1 (c1 CHAR(1));
 
99
CREATE TABLE t2 (c2 CHAR(1));
 
100
CREATE VIEW v1 AS SELECT t1.c1 FROM t1;
 
101
CREATE VIEW v2 AS SELECT t2.c2 FROM t2;
 
102
INSERT INTO t1 VALUES ('1'), ('2'), ('3');
 
103
INSERT INTO t2 VALUES ('1'), ('2'), ('3'), ('2');
 
104
 
 
105
--enable_metadata
 
106
SELECT v1.c1 FROM v1 JOIN t2 ON c1=c2 ORDER BY 1;
 
107
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2;
 
108
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1;
 
109
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1 ORDER BY v2.c2;
 
110
--disable_metadata
 
111
 
 
112
DROP VIEW v1,v2;
 
113
DROP TABLE t1,t2;
 
114
 
74
115
--echo End of 5.0 tests