Bug #114792 Gettin erroe while using run my sql script
Submitted: 26 Apr 2024 5:44 Modified: 26 May 2024 10:29
Reporter: Sofia Arjunan Email Updates:
Status: No Feedback Impact on me:
None 
Category:MySQL Server: Errors Severity:S7 (Test Cases)
Version:8.0.34 OS:Windows (Microsoft Windows 10 Pro)
Assigned to: MySQL Verification Team CPU Architecture:Any
Tags: WBBugReporter

[26 Apr 2024 5:44] Sofia Arjunan
Description:
----[For better reports, please attach the log file after submitting. You can find it in C:\Users\HP\AppData\Roaming\MySQL\Workbench\log\wb.log]

How to repeat:
Receiving bug while running saved sql file using run my sql script.

Error:
sequence item 6:expected str instance, bytes found
[26 Apr 2024 10:29] MySQL Verification Team
HI Mr. Ajunan,

Please attach the script that is producing the error that you report.
[27 May 2024 1:00] Bugs System
No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
[22 Oct 2024 18:18] Kenneth Hyde
Here's a script that generates:  'sequence item 6: expected str instance, bytes found'  Workbench version:  8.0.38   10/22/2024

CREATE SCHEMA IF NOT EXISTS customer_app;

USE customer_app;

CREATE TABLE 'customer' (

 id int NOT NULL AUTO_INCREMENT,
 first_name varchar(255) NOT NULL,
 last_name varchar(255) NOT NULL,
 email varchar(255) NOT NULL,
 PRIMARY KEY ('id')
);

INSERT INTO customer (first_name, last_name, email) VALUES
('John', 'Doe', 'john.doe@example.com'),
('Jane', 'Smith', 'jane.smith@example.om),
('Michael', 'Johnson', 'michael.johnson@example.com),
('Emily', 'Williams', 'emily.williams@example.com),
('David', 'Brown', 'david.brown@example.com),
('Sarah', 'Jones', 'sarah.jones@example.com),
('Christopher', 'Miller', 'Christopher.miller@example.com'),
('Laura', 'Davis', 'laura.davis@example.com'),
('Daniel', 'Wilson', 'Daniel.wilson@example.com'),
('Megan', 'Anderson', 'megan.anderson@example.com'),
('Matthew', 'Taylor','matthew.taylor@example.com'),
('Olivia', 'Lee', 'olivia.lee@example.com'),
('William', 'Martinez', 'William.martinez@example.com'),
('Sophia', 'Garcia', 'Sophia.garcia@example.com'),
('James', 'Lopez', 'james.lopez@example.com');
[22 Oct 2024 18:33] Kenneth Hyde
And how does one change status back to OPEN?????