Alter table modify a column type to json will fail.
Expected Behavior
No response
Steps to Reproduce
DROP TABLE IF EXISTS president;
CREATE TABLE president (
name VARCHAR(100) NOT NULL,
nth INT NOT NULL,
impeached BOOL
);
-- Crap. DJT
ALTER TABLE president MODIFY impeached INTEGER;
-- Crap. DJT again?
ALTER TABLE president MODIFY nth JSON;
Is there an existing issue for the same bug?
Branch Name
main
Commit ID
f9719aa18738a4716152bdaee10acf201325fd76
Other Environment Information
Actual Behavior
Alter table modify a column type to json will fail.
Expected Behavior
No response
Steps to Reproduce
Additional information
No response