-
Notifications
You must be signed in to change notification settings - Fork 409
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
Fix an invalid default value cause bootstrap failed #4916
Fix an invalid default value cause bootstrap failed #4916
Conversation
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
[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. |
|
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
mysql> use test
Database changed
mysql> create table t (a int default 0.0);
Query OK, 0 rows affected (0.07 sec)
mysql> ALTER TABLE t SET TIFLASH REPLICA 1;
Query OK, 0 rows affected (0.07 sec)
mysql> show create table t;
+-------+------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+-------+------------------------------------------------------------------------------------------------------------+
| t | CREATE TABLE `t` (
`a` int(11) DEFAULT '0.0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin |
+-------+------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql> insert t (a) values(default);
Query OK, 1 row affected (0.01 sec)
mysql> select a from t;
+------+
| a |
+------+
| 0 |
+------+
1 row in set (0.25 sec)
mysql> alter table t change a a int default 1.25;
Query OK, 0 rows affected (0.06 sec)
mysql> insert t (a) values(default);
Query OK, 1 row affected (0.00 sec)
mysql> select a from t;
+------+
| a |
+------+
| 0 |
| 1 |
+------+
2 rows in set (0.02 sec)
mysql> alter table t change a a int default 2.8;
Query OK, 0 rows affected (0.06 sec)
mysql> insert t (a) values(default);
Query OK, 1 row affected (0.01 sec)
mysql> select a from t;
+------+
| a |
+------+
| 0 |
| 1 |
| 3 |
+------+
3 rows in set (0.02 sec) |
/run-all-tests |
/rebuild |
Coverage for changed files
Coverage summary
full coverage report (for internal network access only) |
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 |
Coverage for changed files
Coverage summary
full coverage report (for internal network access only) |
In response to a cherrypick label: new pull request created: #5025. |
In response to a cherrypick label: new pull request created: #5026. |
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
In response to a cherrypick label: new pull request created: #5330. |
In response to a cherrypick label: new pull request created: #5331. |
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
In response to a cherrypick label: new pull request created: #5332. |
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
In response to a cherrypick label: new pull request created: #5333. |
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
In response to a cherrypick label: new pull request created: #5334. |
What problem does this PR solve?
Issue Number: close #3157
Problem Summary:
What is changed and how it works?
when value is
0.0
,value.convert<Int64>();
raise a error.Convert it to
String
first, and convert String to Int64 bystd::stoull
static_cast<Int64>(std::stoull(value.convert<String>()));
Check List
Tests
Side effects
Documentation
Release note