~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2009-02-10 16:42:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210164205-ej41ocvm4z1s14nq
Tags: 5.1.31-1ubuntu1
* Merge from debian experimental, remaining changes: 
  - debian/mysql-server-5.1.config: ask for MySQL root password at priority
    high instead of medium so that the password prompt is seen on a default
    install. (LP: #319843)
  - debian/control: 
    + Don't build mysql-server, mysql-client, mysql-common and 
      libmysqlclient15-dev binary packages since they're still provided 
      by mysql-dfsg-5.0.
    + Rename libmysqlclient-dev package to libmysqlclient16-dev (LP: #316280).
      Make it conflict with libmysqlclient15-dev.
    + Make mysql-{client,server}-5.1 packages conflict and
      replace mysql-{client,server}-5.0, but not provide 
      mysql-{client,server}.
    + Depend on a specific version of mysql-common rather than the src 
      version of mysql-dfsg-5.1 since mysql-common is currently part of
      mysql-dfsg-5.0.
  - debian/rules: added -fno-strict-aliasing to CFLAGS to get
    around mysql testsuite build failures.
* debian/patches/92_ssl_test_cert.dpatch: certificate expiration in 
  test suite (LP: #323755).
* Dropped changes:
  - all of the changes made to support both 5.0 and 5.1 installed at the
    same time have been dropped now that amarok doesn't depend on
    mysql-server-5.1 anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
Table   Create Table
120
120
t1      CREATE TABLE `t1` (
121
121
  `a` int(11) DEFAULT NULL
122
 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY RANGE (a) SUBPARTITION BY LINEAR HASH (a) (PARTITION p0 VALUES LESS THAN (10) ENGINE = MyISAM) */
 
122
) ENGINE=MyISAM DEFAULT CHARSET=latin1
 
123
/*!50100 PARTITION BY RANGE (a)
 
124
SUBPARTITION BY LINEAR HASH (a)
 
125
(PARTITION p0 VALUES LESS THAN (10) ENGINE = MyISAM) */
123
126
select SUBPARTITION_METHOD FROM information_schema.partitions WHERE
124
127
table_schema="test" AND table_name="t1";
125
128
SUBPARTITION_METHOD
134
137
Table   Create Table
135
138
t1      CREATE TABLE `t1` (
136
139
  `a` int(11) DEFAULT NULL
137
 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY LIST (a) (PARTITION p0 VALUES IN (10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53) ENGINE = MyISAM) */
 
140
) ENGINE=MyISAM DEFAULT CHARSET=latin1
 
141
/*!50100 PARTITION BY LIST (a)
 
142
(PARTITION p0 VALUES IN (10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53) ENGINE = MyISAM) */
138
143
SELECT PARTITION_DESCRIPTION FROM information_schema.partitions WHERE
139
144
table_schema = "test" AND table_name = "t1";
140
145
PARTITION_DESCRIPTION
141
146
10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53
142
147
drop table t1;
 
148
drop table if exists t1;
 
149
create table t1 (f1 int key) partition by key(f1) partitions 2;
 
150
select create_options from information_schema.tables where table_schema="test";
 
151
create_options
 
152
partitioned
 
153
drop table t1;