-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
ddl: Allow create timestamp default 0 without sql_mode NO_ZERO_DATE (#30305) #30507
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
This change looks good to me, but the CI failed:
#30305 is a regression introduced by #25728, @tangenta please give some suggestions on the fix. |
MySQL's behavior of column-type-change is controlled by the "strict" mode. Even set @@sql_mode = 'STRICT_TRANS_TABLES';
drop table if exists t;
create table t (a int);
insert into t values (0);
alter table t modify column a date;
-- ERROR 1292 (22007): Incorrect date value: '0' for column 'a' at row 1
set @@sql_mode = 'NO_ZERO_DATE';
drop table if exists t;
create table t (a int);
insert into t values (0);
alter table t modify column a date;
-- Query OK, 1 row affected, 1 warning (0.11 sec)
-- Records: 1 Duplicates: 0 Warnings: 1 |
Lines 614 to 616 in 2844660
Adding sessCtx.GetSessionVars().StmtCtx.NoZeroDate = sqlMode.HasStrictMode() here should fix the test. |
Code Coverage Details: https://codecov.io/github/pingcap/tidb/commit/f3e1640558f46f1cef83bb85ec5e304f94faba07 |
/run-check_dev_2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 1c830fc
|
/merge |
/run-check_dev_2 |
@mjonss: Your PR was out of date, I have automatically updated it for you. At the same time I will also trigger all tests for you: /run-all-tests If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
What problem does this PR solve?
Issue Number: close #30305
Problem Summary:
create table t (ts timestamp default 0) was not allowed if
sql_mode
did not includeNO_ZERO_DATE
What is changed and how it works?
Allow to create and alter it.
Check List
Tests
Side effects
Documentation
Release note