-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI: change column's default property to nullable (NULL) #560
Comments
Do you know what caused the mistake? mysql> desc table monitor;
ERROR 1815 (HY000): Failed to execute query: desc table monitor, source: Failed to parse SQL, source: SQL statement is not supported: desc table monitor, keyword: desc |
The example I wrote uses an un-merged function (DESC TABLE) in #534 . |
It is now merged. Your SQL should run as expect. |
Please describe this issue again. I verified and found that it seems to meet the expectationPlease describe this issue again. I just verified and found that it seems to meet the expectation... |
Sorry for the unclear description. In short, column's nullability property is current default to |
I have completed the coding, can you assign it to me? I will mention pr later |
What type of enhancement is this?
API improvement
What does the enhancement do?
If a column's nullability is not specified in
CREATE TABLE
clause it will be defaulted to NON-NULL. But other system like postgresql is default to NULL.Ours:
A nullable column should be explicit declared:
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: