File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ CONSTRAINT `fk_crewRoleAssigned_crewId` FOREIGN KEY (`crew_id`) REFERENCES `repr
27
27
CONSTRAINT `fk_crewRoleAssigned_pilotId` FOREIGN KEY (`crew_id`) REFERENCES `repro`.`pilot` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
28
28
) ENGINE=InnoDB COMMENT="This is a comment about tables";
29
29
ALTER TABLE `repro`.`crew_role_assigned` COMMENT = 'innodb_read_only';
30
- ERROR HY000: Can't lock file (errno: 165 " Table is read only")
30
+ ERROR HY000: Table 'crew_role_assigned' is read only
31
31
SHOW CREATE TABLE `repro`.`crew_role_assigned`;
32
32
Table Create Table
33
33
crew_role_assigned CREATE TABLE `crew_role_assigned` (
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ CONSTRAINT `fk_crewRoleAssigned_pilotId` FOREIGN KEY (`crew_id`) REFERENCES `rep
36
36
-- let $restart_parameters=--innodb-read-only
37
37
-- source include/restart_mysqld.inc
38
38
39
- --error ER_CANT_LOCK
39
+ --error ER_OPEN_AS_READONLY
40
40
ALTER TABLE `repro`.`crew_role_assigned` COMMENT = 'innodb_read_only';
41
41
SHOW CREATE TABLE `repro`.`crew_role_assigned`;
42
42
You can’t perform that action at this time.
0 commit comments