Bug #92267 | "GENERATED is not valid at this position" when reverse engineering stored column | ||
---|---|---|---|
Submitted: | 2 Sep 2018 13:48 | Modified: | 4 Sep 2018 11:09 |
Reporter: | Ronny H. | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Workbench: Modeling | Severity: | S2 (Serious) |
Version: | 8.0.12, 8.0.27 | OS: | Windows (10) |
Assigned to: | CPU Architecture: | Any (x64) | |
Tags: | column, generated, reverse engineering, stored |
[2 Sep 2018 13:48]
Ronny H.
[4 Sep 2018 11:09]
MySQL Verification Team
Hello Ronny, Thank you for the report. thanks, Umesh
[9 Apr 2019 20:20]
Sergey Vinokursky
MySQL Workbench 8.0.15 When i modeling eer - i get same error : ERROR: (3, 27) "GENERATED" is not valid at this position, expecting : ')' ERROR: (20, 27) "GENERATED" is not valid at this position, expecting : ')' ERROR: (51, 31) "GENERATED" is not valid at this position, expecting : ')' ERROR: (61, 24) "GENERATED" is not valid at this position, expecting : ')' ERROR: (72, 27) "GENERATED" is not valid at this position, expecting : ')' ERROR: (89, 27) "GENERATED" is not valid at this position, expecting : ')' ERROR: (97, 24) "GENERATED" is not valid at this position, expecting : ')' ERROR: (109, 29) "GENERATED" is not valid at this position, expecting : ')' ERROR: (117, 34) "GENERATED" is not valid at this position, expecting : ')' ERROR: (128, 27) "GENERATED" is not valid at this position, expecting : ')' ERROR: (140, 38) "GENERATED" is not valid at this position, expecting : ')' ERROR: (161, 32) "GENERATED" is not valid at this position, expecting : ')' ERROR: (182, 37) "GENERATED" is not valid at this position, expecting : ')' ERROR: (195, 26) "GENERATED" is not valid at this position, expecting : ')' ERROR: (206, 28) "GENERATED" is not valid at this position, expecting : ')' ERROR: (226, 30) "GENERATED" is not valid at this position, expecting : ')' ERROR: (242, 26) "GENERATED" is not valid at this position, expecting : ')' ERROR: (257, 29) "GENERATED" is not valid at this position, expecting : ')' ERROR: (271, 30) "GENERATED" is not valid at this position, expecting : ')' ERROR: (282, 33) "GENERATED" is not valid at this position, expecting : ')'
[26 Feb 2020 23:09]
John Slocum
Same thing happening to me, on a "generated always as (....) virtual" column.
[17 Jun 2022 5:27]
John King
1. create relation CREATE TABLE `reverse`.`generated` ( `ID` INT UNSIGNED NOT NULL, `firstname` VARCHAR(45) NULL, `lastname` VARCHAR(45) NULL, `fullname` VARCHAR(45) GENERATED ALWAYS AS (concat_ws(" ",firstname, lastname)) VIRTUAL, PRIMARY KEY (`ID`)); 2. reverse engineer ERROR: (3, 25) "GENERATED" is not valid at this position, expecting ')'
[17 Jun 2022 6:16]
MySQL Verification Team
Bug #107582 marked as duplicate of this one.