1 2 3 4 5 6 7 8 9 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# Testing discarded partitions imported from 8.0.20
# restart: --datadir=BUGDATADIR
SELECT * FROM partitions.t1;
ERROR HY000: Tablespace has been discarded for table 't1'
SELECT * FROM partitions.t1 PARTITION (p0);
ERROR HY000: Tablespace has been discarded for table 't1'
SELECT * FROM partitions.t1 PARTITION (p1);
c1 c2
SELECT * FROM partitions.t1 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t1 PARTITION (p3);
c1 c2
SELECT * FROM partitions.t2;
c1 c2
SELECT * FROM partitions.t2 PARTITION (p0);
c1 c2
SELECT * FROM partitions.t2 PARTITION (p1);
c1 c2
SELECT * FROM partitions.t2 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t2 PARTITION (p3);
c1 c2
SELECT * FROM partitions.t3;
ERROR HY000: Tablespace has been discarded for table 't3'
SELECT * FROM partitions.t3 PARTITION (p0);
ERROR HY000: Tablespace has been discarded for table 't3'
SELECT * FROM partitions.t3 PARTITION (p1);
c1 c2
SELECT * FROM partitions.t3 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t3 PARTITION (p3);
c1 c2
SELECT * FROM partitions.t4;
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p0);
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p0sp0);
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p0sp1);
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p1);
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p1sp0);
ERROR HY000: Tablespace has been discarded for table 't4'
SELECT * FROM partitions.t4 PARTITION (p1sp1);
c1 c2
SELECT * FROM partitions.t4 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t4 PARTITION (p2sp0);
c1 c2
SELECT * FROM partitions.t4 PARTITION (p2sp1);
c1 c2
SELECT * FROM partitions.t5;
ERROR HY000: Tablespace has been discarded for table 't5'
SELECT * FROM partitions.t5 PARTITION (p0);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p0sp0);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p0sp1);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p1);
ERROR HY000: Tablespace has been discarded for table 't5'
SELECT * FROM partitions.t5 PARTITION (p1sp0);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p1sp1);
ERROR HY000: Tablespace has been discarded for table 't5'
SELECT * FROM partitions.t5 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p2sp0);
c1 c2
SELECT * FROM partitions.t5 PARTITION (p2sp1);
c1 c2
SELECT * FROM partitions.t6;
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p0);
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p0sp0);
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p0sp1);
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p1);
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p1sp0);
c1 c2
SELECT * FROM partitions.t6 PARTITION (p1sp1);
ERROR HY000: Tablespace has been discarded for table 't6'
SELECT * FROM partitions.t6 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t6 PARTITION (p2sp0);
c1 c2
SELECT * FROM partitions.t6 PARTITION (p2sp1);
c1 c2
SELECT * FROM partitions.t7;
c1 c2
SELECT * FROM partitions.t7 PARTITION (p0);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p0sp0);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p0sp1);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p1);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p1sp0);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p1sp1);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p2);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p2sp0);
c1 c2
SELECT * FROM partitions.t7 PARTITION (p2sp1);
c1 c2
ALTER TABLE partitions.t1 REBUILD PARTITION p0;
ERROR HY000: Tablespace has been discarded for table 't1'
ALTER TABLE partitions.t1 REBUILD PARTITION p1;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't1'
Warning 1814 InnoDB: Tablespace has been discarded for table 't1'
ALTER TABLE partitions.t1 REBUILD PARTITION p2;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't1'
ALTER TABLE partitions.t1 REBUILD PARTITION p3;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't1'
ALTER TABLE partitions.t2 REBUILD PARTITION p0;
ALTER TABLE partitions.t2 REBUILD PARTITION p1;
ALTER TABLE partitions.t2 REBUILD PARTITION p2;
ALTER TABLE partitions.t2 REBUILD PARTITION p3;
ALTER TABLE partitions.t3 REBUILD PARTITION p0;
ERROR HY000: Tablespace has been discarded for table 't3'
ALTER TABLE partitions.t3 REBUILD PARTITION p1;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't3'
Warning 1814 InnoDB: Tablespace has been discarded for table 't3'
ALTER TABLE partitions.t3 REBUILD PARTITION p2;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't3'
ALTER TABLE partitions.t3 REBUILD PARTITION p3;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't3'
ALTER TABLE partitions.t4 REBUILD PARTITION p0;
ERROR HY000: Tablespace has been discarded for table 't4'
ALTER TABLE partitions.t4 REBUILD PARTITION p1;
ERROR HY000: Tablespace has been discarded for table 't4'
ALTER TABLE partitions.t4 REBUILD PARTITION p2;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
Warning 1814 InnoDB: Tablespace has been discarded for table 't4'
ALTER TABLE partitions.t5 REBUILD PARTITION p0;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't5'
ALTER TABLE partitions.t5 REBUILD PARTITION p1;
ERROR HY000: Tablespace has been discarded for table 't5'
ALTER TABLE partitions.t5 REBUILD PARTITION p2;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't5'
Warning 1814 InnoDB: Tablespace has been discarded for table 't5'
ALTER TABLE partitions.t6 REBUILD PARTITION p0;
ERROR HY000: Tablespace has been discarded for table 't6'
ALTER TABLE partitions.t6 REBUILD PARTITION p1;
ERROR HY000: Tablespace has been discarded for table 't6'
ALTER TABLE partitions.t6 REBUILD PARTITION p2;
Warnings:
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
Warning 1814 InnoDB: Tablespace has been discarded for table 't6'
ALTER TABLE partitions.t7 REBUILD PARTITION p0;
ALTER TABLE partitions.t7 REBUILD PARTITION p1;
ALTER TABLE partitions.t7 REBUILD PARTITION p2;
DROP TABLE partitions.t1;
DROP TABLE partitions.t2;
DROP TABLE partitions.t3;
DROP TABLE partitions.t4;
DROP TABLE partitions.t5;
DROP TABLE partitions.t6;
DROP TABLE partitions.t7;
DROP DATABASE partitions;
# restart
|