~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/metadata.test

  • Committer: Brian Aker
  • Date: 2008-12-18 21:36:23 UTC
  • mfrom: (685.4.10 enable-tests)
  • Revision ID: brian@tangent.org-20081218213623-nsgvfbcax1z6epx4
Merge from Jay

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
11
9
 
12
10
#
13
11
# First some simple tests
15
13
 
16
14
select 1, 1.0, -1, "hello", NULL;
17
15
 
18
 
create table t1 (a int, b int, 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));
 
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));
19
17
select * from t1;
20
18
select a b, b c from t1 as t2;
21
19
drop table t1;
24
22
# Test metadata from ORDER BY (Bug #2654)
25
23
#
26
24
 
27
 
CREATE TABLE t1 (id int(3) default NULL, data varchar(255) default NULL);
 
25
CREATE TABLE t1 (id int default NULL, data varchar(255) default NULL);
28
26
INSERT INTO t1 VALUES (1,'male'),(2,'female');
29
 
CREATE TABLE t2 (id int(3) default NULL, data char(3) default '0');
 
27
CREATE TABLE t2 (id int default NULL, data char(3) default '0');
30
28
INSERT INTO t2 VALUES (1,'yes'),(2,'no');
31
29
 
32
30
select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id;
61
59
delimiter ;//
62
60
--disable_info
63
61
 
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
82
 
 
83
62
# End of 4.1 tests
84
63
 
85
64
#
90
69
select a.* from (select 214748364 as v_small) a;
91
70
--disable_metadata
92
71
 
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
 
 
115
72
--echo End of 5.0 tests