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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
|
let MYSQLD_DATADIR =`SELECT @@datadir`;
SET @old_innodb_file_per_table = @@innodb_file_per_table;
if ($partitioning)
{
let $c1_part=PARTITION BY HASH(c1) PARTITIONS 3;
let $c18_part=PARTITION BY RANGE (col18)
SUBPARTITION BY HASH (col18) SUBPARTITIONS 3
(PARTITION `First_partition` VALUES LESS THAN (10),
PARTITION `Last_partition` VALUES LESS THAN MAXVALUE);
let $col7_part=PARTITION BY KEY (col_7_binary) PARTITIONS 3;
let $col1_part=PARTITION BY HASH (col_1_int) PARTITIONS 3;
let $col2_part=PARTITION BY KEY (col_2_varchar) PARTITIONS 3;
let $i_part=PARTITION BY HASH (i) PARTITIONS 3;
let $col1_key_part=PARTITION BY KEY (col_1) PARTITIONS 3;
let $col18_part=PARTITION BY HASH (col18) PARTITIONS 3;
# Set environment variable for perl snippets
let PARTITIONS=1;
}
SET GLOBAL innodb_file_per_table = 1;
SELECT @@innodb_file_per_table;
--echo # Following testcases are created from JET cases (where import
--echo # export instance are different servers)
--echo # Here test will be run on same import and export instance.
--echo #
--echo # case 1 Simple export, discard and import.
--echo #
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
INSERT INTO t1 VALUES (1),(123),(331);
SELECT c1 FROM t1;
FLUSH TABLES t1 FOR EXPORT;
SELECT * FROM t1 ORDER BY c1;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
--echo #
--echo # case 2 With indexes and more datatypes.
--echo #
eval CREATE TABLE t1 (
col1 BIT(1),
col2 BOOLEAN,
col3 TINYINT,
col4 SMALLINT,
col5 MEDIUMINT,
col6 INT,
col7 BIGINT,
col8 FLOAT (14,3),
col9 DOUBLE (14,3),
col10 VARCHAR(20),
col11 TEXT,
col12 ENUM('a','b','c'),
col13 TEXT,
col14 CHAR(20),
col15 VARBINARY (400),
col16 BINARY(40),
col17 BLOB (400),
col18 INT NOT NULL PRIMARY KEY,
col19 DATE,
col20 DATETIME,
col21 TIMESTAMP NULL,
col22 TIME,
col23 YEAR) ENGINE = InnoDB
$c18_part;
CREATE INDEX idx1 ON t1(col18);
CREATE INDEX prefix_idx ON t1(col14 (10));
if (!$partitioning)
{
CREATE UNIQUE INDEX idx2 ON t1(col12);
CREATE UNIQUE INDEX idx3 ON t1(col8);
}
INSERT INTO t1 VALUES
(1,1,-128,32767,-8388608,2147483647,-9223372036854775808, 92233720368.222,
-92233720368.222,'aaa', + 'aaaaaaaaaa','b','bbbbb','ccccc',
REPEAT('d',40),REPEAT('d',40),REPEAT('d',40),1,'1000-01-01',
'3000-12-31 23:59:59.99','1990-01-01 00:00:01.00',
'01:59:59.00','1901');
INSERT INTO t1 VALUES
(NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL);
--error ER_BAD_NULL_ERROR
INSERT INTO t1 VALUES (NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
--error ER_DUP_ENTRY
INSERT INTO t1 VALUES (NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL);
FLUSH TABLES t1 WITH READ LOCK;
SELECT * FROM t1;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test",
"t1#p#first_partition#sp#first_partitionsp0",
"t1#p#first_partition#sp#first_partitionsp1",
"t1#p#first_partition#sp#first_partitionsp2",
"t1#p#last_partition#sp#last_partitionsp0",
"t1#p#last_partition#sp#last_partitionsp1",
"t1#p#last_partition#sp#last_partitionsp2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (
col1 BIT(1),
col2 BOOLEAN,
col3 TINYINT,
col4 SMALLINT,
col5 MEDIUMINT,
col6 INT,
col7 BIGINT,
col8 FLOAT (14,3),
col9 DOUBLE (14,3),
col10 VARCHAR(20),
col11 TEXT,
col12 ENUM('a','b','c'),
col13 TEXT,
col14 CHAR(20),
col15 VARBINARY (400),
col16 BINARY(40),
col17 BLOB (400),
col18 INT NOT NULL PRIMARY KEY,
col19 DATE,
col20 DATETIME,
col21 TIMESTAMP NULL,
col22 TIME,
col23 YEAR) ENGINE = InnoDB
$c18_part;
CREATE INDEX idx1 ON t1(col18);
CREATE INDEX prefix_idx ON t1(col14 (10));
if (!$partitioning)
{
CREATE UNIQUE INDEX idx2 ON t1(col12);
CREATE UNIQUE INDEX idx3 ON t1(col8);
}
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test",
"t1#p#first_partition#sp#first_partitionsp0",
"t1#p#first_partition#sp#first_partitionsp1",
"t1#p#first_partition#sp#first_partitionsp2",
"t1#p#last_partition#sp#last_partitionsp0",
"t1#p#last_partition#sp#last_partitionsp1",
"t1#p#last_partition#sp#last_partitionsp2");
ib_restore_tablespaces("test",
"t1#p#first_partition#sp#first_partitionsp0",
"t1#p#first_partition#sp#first_partitionsp1",
"t1#p#first_partition#sp#first_partitionsp2",
"t1#p#last_partition#sp#last_partitionsp0",
"t1#p#last_partition#sp#last_partitionsp1",
"t1#p#last_partition#sp#last_partitionsp2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
CHECK TABLE t1;
SELECT * FROM t1;
DROP TABLE t1;
--echo #
--echo # case 3 - with blob objects
--echo #
eval CREATE TABLE t1 (
col_1_varbinary VARBINARY (4000),
col_2_varchar VARCHAR (4000),
col_3_text TEXT (4000),
col_4_blob BLOB (4000),
col_5_text TEXT (4000),
col_6_varchar VARCHAR (4000),
col_7_binary BINARY (255)
) ROW_FORMAT=DYNAMIC ENGINE = InnoDB
$col7_part;
INSERT INTO t1 VALUES(
REPEAT('a', 4000),REPEAT('o', 4000),REPEAT('a', 4000), REPEAT('o', 4000),
REPEAT('a', 4000),REPEAT('a', 4000),REPEAT('a', 255));
SELECT col_1_varbinary = REPEAT("a", 4000),
col_2_varchar = REPEAT("o", 4000),
col_3_text = REPEAT("a", 4000),
col_4_blob = REPEAT("o", 4000),
col_5_text = REPEAT("a", 4000),
col_6_varchar = REPEAT("a", 4000),
col_7_binary = REPEAT("a", 255)
FROM t1;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (
col_1_varbinary VARBINARY (4000),
col_2_varchar VARCHAR (4000),
col_3_text TEXT (4000),
col_4_blob BLOB (4000),
col_5_text TEXT (4000),
col_6_varchar VARCHAR (4000),
col_7_binary BINARY (255)
) ROW_FORMAT=DYNAMIC ENGINE = InnoDB
$col7_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT col_1_varbinary = REPEAT("a", 4000),
col_2_varchar = REPEAT("o", 4000),
col_3_text = REPEAT("a", 4000),
col_4_blob = REPEAT("o", 4000),
col_5_text = REPEAT("a", 4000),
col_6_varchar = REPEAT("a", 4000),
col_7_binary = REPEAT("a", 255)
FROM t1;
DROP TABLE t1;
--echo #
--echo # case 4 - transportable tablespace with auto_increment
--echo #
eval CREATE TABLE t1 (
col_1_int INT AUTO_INCREMENT,
col_2_varchar VARCHAR (20),
PRIMARY KEY (col_1_int)) ENGINE = InnoDB
$col1_part;
INSERT INTO t1 VALUES (1,'a1'),(2,'a2'),(3,'a3');
INSERT INTO t1 (col_2_varchar) VALUES ('a4'),('a5'),('a6');
SELECT * FROM t1 ORDER BY col_1_int;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (
col_1_int INT AUTO_INCREMENT,
col_2_varchar VARCHAR (20),
PRIMARY KEY (col_1_int)) ENGINE = InnoDB
$col1_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1 ORDER BY col_1_int;
# error on inserting duplicate value
--error ER_DUP_ENTRY
INSERT INTO t1 VALUES (1,'a1');
# insert new values
INSERT INTO t1(col_2_varchar) VALUES ('a101'),('a102'),('a103');
SELECT * FROM t1 ORDER BY col_1_int;
# check table can be altered
ALTER TABLE t1 MODIFY col_1_int BIGINT;
SELECT * FROM t1 ORDER BY col_1_int;
DROP TABLE t1;
--echo #
--echo # case 5 - check with primary and foreign key
--echo #
if (!$partitioning)
{
CREATE TABLE t1 (
col_1_int INT,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_2_varchar)) ENGINE = InnoDB;
CREATE TABLE t1_fk (
col_1_int INT,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_1_int),
FOREIGN KEY (col_2_varchar) REFERENCES t1(col_2_varchar)
) ENGINE = InnoDB;
INSERT INTO t1 VALUES (1,'a1'),(2,'a2'),(3,'a3'),(4,'a4'),(5,'a5');
INSERT INTO t1_fk VALUES (1,'a1'),(2,'a2'),(3,'a3');
SELECT * FROM t1;
SELECT * FROM t1_fk;
FLUSH TABLES t1,t1_fk FOR EXPORT;
perl;
require 'include/innodb-util.inc';
ib_backup_tablespaces("test", "t1");
ib_backup_tablespaces("test", "t1_fk");
EOF
UNLOCK TABLES;
DROP TABLE t1_fk,t1;
CREATE TABLE t1 (
col_1_int INT,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_2_varchar)) ENGINE = InnoDB;
CREATE TABLE t1_fk (
col_1_int INT,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_1_int),
FOREIGN KEY (col_2_varchar) REFERENCES t1(col_2_varchar)
) ENGINE = InnoDB;
--echo # Alter table discard table is not allowed with foreign_key_checks = 1
SET foreign_key_checks = 0;
ALTER TABLE t1_fk DISCARD TABLESPACE;
ALTER TABLE t1 DISCARD TABLESPACE;
SET foreign_key_checks = 1;
perl;
require 'include/innodb-util.inc';
ib_discard_tablespaces("test", "t1");
ib_discard_tablespaces("test", "t1_fk");
ib_restore_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1_fk");
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
ALTER TABLE t1_fk IMPORT TABLESPACE;
SELECT * FROM t1;
SELECT * FROM t1_fk;
--echo # Enter Invalid value: PK-FK relationship violation
--error ER_NO_REFERENCED_ROW_2
INSERT INTO t1_fk VALUES (100,'a100');
SET AUTOCOMMIT = 0;
INSERT INTO t1_fk VALUES (4,'a4'),(5,'a5');
ROLLBACK;
SELECT * FROM t1_fk;
DROP TABLE t1_fk,t1;
SET AUTOCOMMIT = 1;
--remove_file $MYSQLTEST_VARDIR/tmp/t1_fk.cfg
--remove_file $MYSQLTEST_VARDIR/tmp/t1_fk.ibd
}
if ($partitioning)
{
--echo # Foreign Keys not supported by partitioned tables.
}
--echo #
--echo # case 6 - transportable tablespace with transactions
--echo #
eval CREATE TABLE t1 (
col_1_int int,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_2_varchar)) ENGINE = InnoDB
$col2_part;
SET AUTOCOMMIT = 0;
INSERT INTO t1 VALUES (1,'a1'),(2,'a2');
SELECT * FROM t1;
COMMIT;
INSERT INTO t1 VALUES (3,'a3'),(4,'a4');
ROLLBACK;
INSERT INTO t1 VALUES (5,'a5'),(6,'a6');
COMMIT;
SELECT * FROM t1 ORDER BY col_1_int;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (
col_1_int int,col_2_varchar VARCHAR (20),
PRIMARY KEY (col_2_varchar)) ENGINE = InnoDB
$col2_part;
ALTER TABLE t1 DISCARD TABLESPACE;
SET AUTOCOMMIT = 0;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
INSERT INTO t1 VALUES (7,'a7'),(8,'a8');
COMMIT;
INSERT INTO t1 VALUES (9,'a9'),(10,'a10');
ROLLBACK;
INSERT INTO t1 VALUES (11,'a11'),(12,'a12');
COMMIT;
SELECT * FROM t1 ORDER BY col_1_int;
SET AUTOCOMMIT = 1;
DROP TABLE t1;
--echo #
--echo # case 7 - Transportable tablespace with transaction
--echo # (earlier failed with jet)
--echo #
eval CREATE TABLE t1 (i int) ENGINE = InnoDB
$i_part;
INSERT INTO t1 VALUES (100),(200),(300);
SELECT * FROM t1 ORDER BY i;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (i int) ENGINE = InnoDB
$i_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1 ORDER BY i;
SET AUTOCOMMIT = 0;
INSERT INTO t1 VALUES (101),(102),(103);
COMMIT;
SELECT * FROM t1 ORDER BY i;
SET AUTOCOMMIT = 1;
DROP TABLE t1;
--echo #
--echo # case 8 - negative cases
--echo #
eval CREATE TABLE t1 (i int) ENGINE = InnoDB
$i_part;
INSERT INTO t1 VALUES (100),(200),(300);
SELECT * FROM t1 ORDER BY i;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
--echo # try if we can flush again
FLUSH TABLES t1 FOR EXPORT;
UNLOCK TABLES;
DROP TABLE t1;
--echo # create table with incorrect schema
eval CREATE TABLE t1 (i bigint) ENGINE = InnoDB
$i_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
--echo # error as mismatch in column data type
--error ER_TABLE_SCHEMA_MISMATCH
ALTER TABLE t1 IMPORT TABLESPACE;
--echo # explicitly delete ibd file before creating table with correct schema
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_unlink_tablespace("test", "t1#p#p0");
ib_unlink_tablespace("test", "t1#p#p1");
ib_unlink_tablespace("test", "t1#p#p2");
} else {
ib_unlink_tablespace("test", "t1");
}
EOF
DROP TABLE t1;
eval CREATE TABLE t1 (i int) ENGINE = InnoDB
$i_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
--echo # Import should succeed
ALTER TABLE t1 IMPORT TABLESPACE;
--echo # Try to import twice
--replace_regex /#p#/#P#/ /#sp#/#SP#/
--error ER_TABLESPACE_EXISTS
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1 ORDER BY i;
SET AUTOCOMMIT = 0;
INSERT INTO t1 VALUES (101),(102),(103);
COMMIT;
SELECT * FROM t1 ORDER BY i;
DROP TABLE t1;
eval CREATE TABLE t1 (i int) ENGINE = InnoDB
$i_part;
ALTER TABLE t1 DISCARD TABLESPACE;
--echo # do not delete ibd file and try to import
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
DROP TABLE t1;
SET AUTOCOMMIT = 1;
--echo #
--echo # case 9 - empty table import
--echo #
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
SET AUTOCOMMIT = 0;
INSERT INTO t1 VALUES (1),(123),(331);
SELECT c1 FROM t1;
ROLLBACK;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
SET AUTOCOMMIT = 1;
--echo #
--echo # case 10 - Transportable tablespaces with prefix index
--echo #
eval CREATE TABLE t1 (col_1 CHAR (255),
col_2 VARCHAR (255), col_3 VARCHAR (255),
col_4 VARCHAR (255),col_5 VARCHAR (255),
col_6 text (255), col_7 text (255),
col_8 text (255),col_9 text (255),
col_10 BLOB (255),col_11 BLOB (255),
col_12 BLOB (255), col_13 BLOB (255),
col_14 BLOB (255), col_15 int) ENGINE = InnoDB charset latin1
$col1_key_part;
CREATE INDEX prefix_idx ON t1(
col_1 (50),col_2 (50),col_3 (50),
col_4 (50),col_5 (50),col_6 (50),
col_7 (50),col_8 (50),col_9 (50),
col_10 (50),col_11 (50),col_12 (50),
col_13(50));
INSERT INTO t1 VALUES (
REPEAT("col1_00001",10),REPEAT("col2_00001",10),REPEAT("col3_00001",10),
REPEAT("col4_00001",10),REPEAT("col5_00001",10),REPEAT("col6_00001",10),
REPEAT("col7_00001",10),REPEAT("col8_00001",10),REPEAT("col9_00001",10),
REPEAT("col10_00001",10),REPEAT("col11_00001",10),REPEAT("col12_00001",10),
REPEAT("col13_00001",10),REPEAT("col14_00001",10),1);
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (col_1 CHAR (255),
col_2 VARCHAR (255), col_3 VARCHAR (255),
col_4 VARCHAR (255),col_5 VARCHAR (255),
col_6 text (255), col_7 text (255),
col_8 text (255),col_9 text (255),
col_10 BLOB (255),col_11 BLOB (255),
col_12 BLOB (255), col_13 BLOB (255),
col_14 BLOB (255), col_15 int) ENGINE = InnoDB charset latin1
$col1_key_part;
CREATE INDEX prefix_idx ON t1(
col_1 (50),col_2 (50),col_3 (50),
col_4 (50),col_5 (50),col_6 (50),
col_7 (50),col_8 (50),col_9 (50),
col_10 (50),col_11 (50),col_12 (50),
col_13(50));
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
DROP TABLE t1;
--echo #
--echo # case 11 - Transportable tablespaces with secondary index
--echo #
eval CREATE TABLE t1 (col_1 CHAR (255),
col_2 VARCHAR (255), col_3 VARCHAR (255),
col_4 VARCHAR (255),col_5 VARCHAR (255),
col_6 text (255), col_7 text (255),
col_8 text (255),col_9 text (255),
col_10 BLOB (255),col_11 BLOB (255),
col_12 BLOB (255), col_13 BLOB (255),
col_14 BLOB (255), col_15 int) ENGINE = InnoDB charset latin1
$col1_key_part;
CREATE INDEX idx1 ON t1(col_1);
CREATE INDEX idx2 ON t1(col_2);
CREATE INDEX idx3 ON t1(col_3);
CREATE INDEX idx4 ON t1(col_4);
CREATE INDEX idx5 ON t1(col_5);
CREATE INDEX idx6 ON t1(col_6(255));
CREATE INDEX idx7 ON t1(col_7(255));
CREATE INDEX idx8 ON t1(col_8(255));
CREATE INDEX idx9 ON t1(col_9(255));
CREATE INDEX idx10 ON t1(col_10(255));
CREATE INDEX idx11 ON t1(col_11(255));
CREATE INDEX idx12 ON t1(col_12(255));
CREATE INDEX idx13 ON t1(col_13(255));
CREATE INDEX idx14 ON t1(col_14(255));
INSERT INTO t1 VALUES (
REPEAT("col1_00001",10),REPEAT("col2_00001",10),REPEAT("col3_00001",10),
REPEAT("col4_00001",10),REPEAT("col5_00001",10),REPEAT("col6_00001",10),
REPEAT("col7_00001",10),REPEAT("col8_00001",10),REPEAT("col9_00001",10),
REPEAT("col10_00001",10),REPEAT("col11_00001",10),REPEAT("col12_00001",10),
REPEAT("col13_00001",10),REPEAT("col14_00001",10),1);
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (col_1 CHAR (255),
col_2 VARCHAR (255), col_3 VARCHAR (255),
col_4 VARCHAR (255),col_5 VARCHAR (255),
col_6 text (255), col_7 text (255),
col_8 text (255),col_9 text (255),
col_10 BLOB (255),col_11 BLOB (255),
col_12 BLOB (255), col_13 BLOB (255),
col_14 BLOB (255), col_15 int) ENGINE = InnoDB charset latin1
$col1_key_part;
CREATE INDEX idx1 ON t1(col_1);
CREATE INDEX idx2 ON t1(col_2);
CREATE INDEX idx3 ON t1(col_3);
CREATE INDEX idx4 ON t1(col_4);
CREATE INDEX idx5 ON t1(col_5);
CREATE INDEX idx6 ON t1(col_6(255));
CREATE INDEX idx7 ON t1(col_7(255));
CREATE INDEX idx8 ON t1(col_8(255));
CREATE INDEX idx9 ON t1(col_9(255));
CREATE INDEX idx10 ON t1(col_10(255));
CREATE INDEX idx11 ON t1(col_11(255));
CREATE INDEX idx12 ON t1(col_12(255));
CREATE INDEX idx13 ON t1(col_13(255));
CREATE INDEX idx14 ON t1(col_14(255));
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
--echo # perform transaction on imported table
SET AUTOCOMMIT = 0;
INSERT INTO t1(col_15) VALUES (15000),(16000);
SELECT col_15 FROM t1 WHERE col_15 > 11000;
ROLLBACK;
SELECT col_15 FROM t1 WHERE col_15 > 11000;
INSERT INTO t1(col_15) VALUES (15000),(16000);
COMMIT;
SELECT col_15 FROM t1 WHERE col_15 > 11000;
--echo # Perform DDL operations on imported table.
ALTER TABLE t1 DROP INDEX idx1;
ALTER TABLE t1 DROP INDEX idx6;
ALTER TABLE t1 DROP INDEX idx10;
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
ALTER TABLE t1 ADD INDEX idx1 (col_1);
ALTER TABLE t1 ADD INDEX idx6 (col_1(255));
ALTER TABLE t1 ADD INDEX idx10 (col_10(255));
SELECT
col_1 = REPEAT("col1_00001",10),
col_2 = REPEAT("col2_00001",10),
col_3 = REPEAT("col3_00001",10),
col_4 = REPEAT("col4_00001",10),
col_5 = REPEAT("col5_00001",10),
col_6 = REPEAT("col6_00001",10),
col_7 = REPEAT("col7_00001",10),
col_8 = REPEAT("col8_00001",10),
col_9 = REPEAT("col9_00001",10),
col_10 = REPEAT("col10_00001",10),
col_11 = REPEAT("col11_00001",10),
col_12 = REPEAT("col12_00001",10),
col_13 = REPEAT("col13_00001",10),
col_14 = REPEAT("col14_00001",10),
col_15
FROM t1;
DROP TABLE t1;
SET AUTOCOMMIT = 1;
--echo #
--echo # case 12 - Transportable tablespaces with trigger / view
--echo #
eval CREATE TABLE t1(col1 bit(1),
col2 boolean,col3 tinyint, col4 smallint,
col5 mediumint,col6 int, col7 bigint,
col8 float (14,3),col9 double (14,3),
col10 VARCHAR(20) CHARACTER SET utf8,
col11 TEXT CHARACTER SET binary,
col12 ENUM('a','b','c') CHARACTER SET binary,
col13 TEXT CHARACTER SET latin1 COLLATE latin1_general_cs,
col14 CHAR(20), col15 VARBINARY (400),
col16 BINARY(40), col17 BLOB (400),
col18 int not null primary key,
col19 DATE,col20 DATETIME, col21 TIMESTAMP NULL,
col22 TIME, col23 YEAR) ENGINE = InnoDB
$col18_part;
--echo # table for trigger action
CREATE TABLE trigger_table (i int) ENGINE = InnoDB;
# define trigger
CREATE TRIGGER tri AFTER INSERT ON t1
FOR EACH ROW INSERT INTO trigger_table VALUES(NEW.col18);
# define view
CREATE OR REPLACE VIEW VW1 AS SELECT * FROM t1;
CREATE INDEX idx1 ON t1(col18);
CREATE INDEX prefix_idx ON t1(col14 (10));
if (!$partitioning)
{
CREATE UNIQUE INDEX idx2 ON t1(col12);
CREATE UNIQUE INDEX idx3 ON t1(col8);
}
INSERT INTO t1 VALUES (
1,1,-128,32767,-8388608,2147483647,-9223372036854775808,92233720368.222,
-92233720368.222,'aaa','aaaaaaaaaa','b','bbbbb','ccccc',REPEAT('d',40),
REPEAT('d',40),REPEAT('d',40),1,'1000-01-01','3000-12-31 23:59:59.99',
'1990-01-01 00:00:01.00','01:59:59.00','1901');
INSERT INTO t1 VALUES (
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,3,NULL,NULL,NULL,NULL,NULL);
--error ER_BAD_NULL_ERROR
INSERT INTO t1 VALUES (
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
--error ER_DUP_ENTRY
INSERT INTO t1 VALUES (
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,1,NULL,NULL,NULL,NULL,NULL);
SELECT * FROM t1;
SELECT * FROM trigger_table;
SELECT * FROM VW1;
FLUSH TABLES t1 FOR EXPORT;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
--echo # trigger is also dropped when table is dropped
DROP TABLE t1;
eval CREATE TABLE t1(col1 bit(1),
col2 boolean,col3 tinyint, col4 smallint,
col5 mediumint,col6 int, col7 bigint,
col8 float (14,3),col9 double (14,3),
col10 VARCHAR(20) CHARACTER SET utf8,
col11 TEXT CHARACTER SET binary,
col12 ENUM('a','b','c') CHARACTER SET binary,
col13 TEXT CHARACTER SET latin1 COLLATE latin1_general_cs,
col14 CHAR(20), col15 VARBINARY (400),
col16 BINARY(40), col17 BLOB (400),
col18 int not null primary key,
col19 DATE,col20 DATETIME, col21 TIMESTAMP NULL,
col22 TIME, col23 YEAR) ENGINE = InnoDB
$col18_part;
CREATE INDEX idx1 ON t1(col18);
CREATE INDEX prefix_idx ON t1(col14 (10));
if (!$partitioning)
{
CREATE UNIQUE INDEX idx2 ON t1(col12);
CREATE UNIQUE INDEX idx3 ON t1(col8);
}
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
SELECT * FROM t1;
SELECT * FROM trigger_table;
SELECT * FROM VW1;
# trigger table is not updated as trigger got dropped
INSERT INTO t1(col18) VALUES (5);
# validate data in table not updated
SELECT * FROM trigger_table;
UPDATE t1 SET col18=10 WHERE col18=1;
# view shows updated data
SELECT * FROM VW1;
SELECT * FROM t1 WHERE col18=10;
ALTER TABLE t1 ADD COLUMN col24 varbinary(40) default null;
INSERT INTO t1(col18,col24) VALUES (6,REPEAT('a',10));
SELECT col24,col18 FROM t1 WHERE col18 in (6,1,10) ORDER BY col18;
ALTER TABLE t1 DROP INDEX prefix_idx;
SELECT col18,col14 FROM t1 WHERE col14 like '_ccc%';
ALTER TABLE t1 ADD INDEX prefix_idx (col24(10));
SELECT col18,col24 FROM t1 WHERE col24 like '_a_a%';
DROP VIEW VW1;
DROP TABLE t1;
DROP TABLE trigger_table;
--echo #
--echo # case 13 Simple export, discard and import with instant ADD COLUMN.
--echo #
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
INSERT INTO t1 VALUES (1), (123), (212), (331), (332), (333), (334), (335) ;
ALTER TABLE t1 ADD COLUMN c2 INT DEFAULT 500;
SELECT c1 FROM t1;
FLUSH TABLES t1 FOR EXPORT;
SELECT * FROM t1 ORDER BY c1;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (c1 INT, c2 INT) ENGINE = InnoDB
$c1_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
ALTER TABLE t1 IMPORT TABLESPACE;
CHECK TABLE t1;
SELECT * FROM t1 ORDER BY c1;
#SELECT name, instant_cols FROM information_schema.innodb_tables WHERE instant_cols > 0;
#SELECT name, has_default FROM information_schema.innodb_columns WHERE has_default = 1;
DROP TABLE t1;
--echo #
--echo # case 14 Simple export, discard and import with instant ADD COLUMN.
--echo # However, this time the .cfg file would be missing
--echo #
eval CREATE TABLE t1 (c1 INT) ENGINE = InnoDB
$c1_part;
INSERT INTO t1 VALUES (1), (123), (212), (331), (332), (333), (334), (335) ;
ALTER TABLE t1 ADD COLUMN c2 INT DEFAULT 500;
SELECT c1 FROM t1;
FLUSH TABLES t1 FOR EXPORT;
SELECT * FROM t1 ORDER BY c1;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_backup_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_backup_tablespaces("test", "t1");
}
EOF
UNLOCK TABLES;
DROP TABLE t1;
eval CREATE TABLE t1 (c1 INT, c2 INT) ENGINE = InnoDB
$c1_part;
ALTER TABLE t1 DISCARD TABLESPACE;
perl;
require 'include/innodb-util.inc';
if ($ENV{'PARTITIONS'})
{
ib_discard_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
ib_restore_tablespaces("test", "t1#p#p0", "t1#p#p1", "t1#p#p2");
} else {
ib_discard_tablespaces("test", "t1");
ib_restore_tablespaces("test", "t1");
}
EOF
--echo # remove the .cfg files
--remove_files_wildcard $MYSQLD_DATADIR/test t1*.cfg
--error ER_TABLE_SCHEMA_MISMATCH
ALTER TABLE t1 IMPORT TABLESPACE;
DROP TABLE t1;
--remove_files_wildcard $MYSQLD_DATADIR/test t1*.ibd
--disable_query_log
call mtr.add_suppression("Got error -1 when reading table '.*'");
call mtr.add_suppression("Error: tablespace id and flags in file '.*'.*");
call mtr.add_suppression("The table .* doesn't have a corresponding tablespace, it was discarded");
call mtr.add_suppression("Unable to import tablespace .* because it already exists. Please DISCARD the tablespace before IMPORT.");
call mtr.add_suppression("Record overlaps another");
call mtr.add_suppression("Apparent corruption in space .* page .* index `GEN_CLUST_INDEX`");
call mtr.add_suppression("In page .* of index `GEN_CLUST_INDEX` of table");
--enable_query_log
--remove_files_wildcard $MYSQLTEST_VARDIR/tmp t1*.ibd
--remove_files_wildcard $MYSQLTEST_VARDIR/tmp t1*.cfg
SET GLOBAL innodb_file_per_table = @old_innodb_file_per_table;
|