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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2009-06-25 12:55:45 UTC
  • mfrom: (0.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090625125545-v27uqh8rlsj8uh2y
Tags: upstream-5.1.34
ImportĀ upstreamĀ versionĀ 5.1.34

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
ERROR HY000: Error in list of partitions to DROP
26
26
ALTER TABLE t1 REORGANIZE PARTITION x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10 INTO
27
27
(PARTITION x11 VALUES LESS THAN (22));
28
 
ERROR HY000: More partitions to reorganise than there are partitions
 
28
ERROR HY000: More partitions to reorganize than there are partitions
29
29
ALTER TABLE t1 REORGANIZE PARTITION x0,x1,x2 INTO
30
30
(PARTITION x3 VALUES LESS THAN (6));
31
31
ERROR HY000: Duplicate partition name x3
32
32
ALTER TABLE t1 REORGANIZE PARTITION x0, x2 INTO
33
33
(PARTITION x11 VALUES LESS THAN (2));
34
 
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
 
34
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
35
35
ALTER TABLE t1 REORGANIZE PARTITION x0, x1, x1 INTO
36
36
(PARTITION x11 VALUES LESS THAN (4));
37
37
ERROR HY000: Error in list of partitions to REORGANIZE