| Bug #109995 | "SELECT * FROM table_name;" crashing my mysql workbench | ||
|---|---|---|---|
| Submitted: | 9 Feb 2023 2:04 | Modified: | 9 Feb 2023 11:02 |
| Reporter: | Ramu Ganta | Email Updates: | |
| Status: | Duplicate | Impact on me: | |
| Category: | MySQL Workbench | Severity: | S1 (Critical) |
| Version: | 8.0.32 | OS: | MacOS |
| Assigned to: | CPU Architecture: | ARM | |
[9 Feb 2023 11:02]
MySQL Verification Team
Hello Ramu, Thank you for the bug report. Imho this is duplicate of Bug #109671, please see Bug #109671. Regards, Ashwini Patil

Description: while running the "SELECT * FROM table_name;" statement, mysql workbench is crashing. I couldn’t find the solution, please help me. Below, I'm attaching mysql code. How to repeat: CREATE TABLE customers ( customer_id INT AUTO_INCREMENT, first_name VARCHAR(255), last_name VARCHAR(255), email_address VARCHAR(255), number_of_complaints INT, PRIMARY KEY (customer_id) ); ALTER TABLE customers ADD COLUMN gender ENUM('M', 'F') AFTER last_name; INSERT INTO customers (first_name, last_name, gender, email_address, number_of_complaints) VALUES ('John', 'Mackinley', 'M', 'john.mckinley@365datascience.com', 0) ; SELECT * FROM customers;