Bug #108815 I get program crash whenever I type "money"
Submitted: 18 Oct 2022 20:12 Modified: 19 Oct 2022 12:20
Reporter: Toritseju Mikie Email Updates:
Status: Not a Bug Impact on me:
None 
Category:MySQL Workbench: SQL Editor Severity:S3 (Non-critical)
Version:8.0.29 OS:Windows (win 11)
Assigned to: CPU Architecture:x86 (amd ryzen 7 5800h)

[18 Oct 2022 20:12] Toritseju Mikie
Description:
Whenever I type money or try to create a column with this keyword, the whole application crashes.

How to repeat:
create table bank_accounts(
   money (10, 2)

)

if I try to backspace the space between the money and the (10, 2)
like 'money(10, 2)'
then the program will crash
[19 Oct 2022 11:32] MySQL Verification Team
Hello Toritseju Mikie,

Thank you for the bug report.
Imho this is not a bug. Please define a datatype for column "Money" like below

create table bank_accounts(money decimal(10, 2));

Regards,
Ashwini Patil
[19 Oct 2022 12:20] Toritseju Mikie
thanks for the response

if I copy-paste your code it works 
create table bank_accounts(money decimal(10, 2));

I think my problem was that I was trying to build the table, and before I could even finish typing the command to create the table, then it would crash, so if I type the 'money' and the '(10, 2)' and bring them together, before I would even have the chance to type 'decimal' in between the 'money' and the '(10, 2)' is when it would crash.

If I type the correct command that you gave me in order, or I copy-paste your command, it works though. It's just when if I type it out of order as mentioned above is when it will crash.

I recorded video of the issue. I know it's not a big issue (if you type the command in the right order, it doesn't crash) but just wanted to let you know
https://www.youtube.com/watch?v=3XvLDajh6IY