~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy

« back to all changes in this revision

Viewing changes to mysql-test/r/metadata.result

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug, Mathias Gug, Chuck Short
  • Date: 2008-01-25 04:10:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20080125041049-9v0lza2vm6jfv1uf
Tags: 5.0.51-3ubuntu1
[Mathias Gug]
* Merge from debian unstable, remaining changes:
  - debian/control:
    - Set Maintainer to Ubuntu Core dev. Move Debian maintainer
      to XSBC-Original-Maintainer.
    - Add mysql-doc-5.0 as a Suggests to mysql-client-5.0,  mysql-server-5.0
      and libmysqlclient15-dev.
  - debian/rules: Apply same configuration options on lpia as for i386.
* debian/control:
  - Preprend XS-Original- to Vcs-{Browser,Svn}.
* debian/rules:
  - Support DEB_BUILD_OPTIONS option 'nocheck' to skip tests.
* Dropped patches:
  - debian/patches/91_bug29389.dpatch:
      fix for mysql bug 27383 which causes mysql-test 'mysql_client_test'
      to fail due to gcc 4.x optimizations.
  - debian/libmysqlclient15-dev.files, debian/mysql-client-5.0.files,
    debian/mysql-server-5.0.files: man pages are GPLed now.
* Improved error message when unable to connect using debian-sys-maint. (LP:
  #153868)

[Chuck Short]
* Replcaed --with-comment="Debian" with --with-comment="Ubuntu" in debian/rules  (LP: #134384)
* Added note about the "/etc/mysql/conf.d" directory in my.cnf (LP: #136225)
* Fixed mysqlhotcopy failure. (LP: #162393)
* Fixed mysqlslowdump usage.  Added patch from Arnold Daniels <info@adaniels.nl>. (LP: #183762)

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
def                     a       v_small v_small 3       9       9       N       32769   0       63
141
141
v_small
142
142
214748364
 
143
CREATE TABLE t1 (c1 CHAR(1));
 
144
CREATE TABLE t2 (c2 CHAR(1));
 
145
CREATE VIEW v1 AS SELECT t1.c1 FROM t1;
 
146
CREATE VIEW v2 AS SELECT t2.c2 FROM t2;
 
147
INSERT INTO t1 VALUES ('1'), ('2'), ('3');
 
148
INSERT INTO t2 VALUES ('1'), ('2'), ('3'), ('2');
 
149
SELECT v1.c1 FROM v1 JOIN t2 ON c1=c2 ORDER BY 1;
 
150
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
 
151
def     test    t1      v1      c1      c1      254     1       1       Y       0       0       8
 
152
c1
 
153
1
 
154
2
 
155
2
 
156
3
 
157
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2;
 
158
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
 
159
def     test    t1      v1      c1      c1      254     1       1       Y       0       0       8
 
160
def     test    t2      v2      c2      c2      254     1       1       Y       0       0       8
 
161
c1      c2
 
162
1       1
 
163
2       2
 
164
3       3
 
165
2       2
 
166
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1;
 
167
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
 
168
def     test    t1      v1      c1      c1      254     1       1       Y       32768   0       8
 
169
def     test    t2      v2      c2      c2      254     1       1       Y       0       0       8
 
170
c1      c2
 
171
1       1
 
172
2       2
 
173
3       3
 
174
SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1 ORDER BY v2.c2;
 
175
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
 
176
def     test    t1      v1      c1      c1      254     1       1       Y       32768   0       8
 
177
def     test    t2      v2      c2      c2      254     1       1       Y       0       0       8
 
178
c1      c2
 
179
1       1
 
180
2       2
 
181
3       3
 
182
DROP VIEW v1,v2;
 
183
DROP TABLE t1,t2;
143
184
End of 5.0 tests