Fix an invalid default value cause bootstrap failed#4916
Fix an invalid default value cause bootstrap failed#4916ti-chi-bot merged 12 commits intopingcap:masterfrom
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. DetailsReviewer 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 filesCoverage summaryfull coverage report (for internal network access only) |
|
/merge |
Coverage for changed filesCoverage summaryfull 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
Stringfirst, and convert String to Int64 bystd::stoullstatic_cast<Int64>(std::stoull(value.convert<String>()));Check List
Tests
Side effects
Documentation
Release note