-
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
degrade to armv8.0 #6255
degrade to armv8.0 #6255
Conversation
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>
/run-all-tests |
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
cmake/cpu_features.cmake
Outdated
|
||
if (NO_ARMV81_OR_HIGHER) | ||
# crc32 is optional in v8.0 and mandatory in v8.1. Enable it as __crc32()* is used in lot's of places and even very old ARM CPUs | ||
# support it. | ||
set (COMPILER_FLAGS "${COMPILER_FLAGS} -march=armv8+crc") | ||
set (TEST_FLAG "-march=armv8+crc") |
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.
Are these TEST_FLAG
used anywhere?
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.
in line 50, set (COMPILER_FLAGS "${COMPILER_FLAGS} ${TEST_FLAG}")
append it to COMPILER_FLAGS.
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.
If there is no need to invoke check_cxx_source_compiles
, why not set COMPILER_FLAGS
directly.
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.
fixed
/run-integration-test |
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
Signed-off-by: Lloyd-Pottiger <yan1579196623@gmail.com>
/run-all-tests |
@@ -62,7 +62,7 @@ mysql> alter table test.t drop primary key; | |||
mysql> drop table if exists test.t_case; | |||
## create table with `source` is nullable | |||
## insert some data and left `source` to be empty | |||
mysql> create table test.t_case (`case_no` varchar(32) not null,`source` varchar(20) default null,`p` varchar(12) DEFAULT NULL,primary key (`case_no`)); | |||
mysql> create table test.t_case (`case_no` varchar(32) not null,`source` varchar(20) default null,`p` varchar(12) DEFAULT NULL,primary key (`case_no`) NONCLUSTERED); |
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.
Introduced by pingcap/tidb#37384 and pingcap/tidb#38447 that change the default value of tidb_enable_clustered_index
from INT_ONLY
to ON
/rebuild |
/rebuild |
/build |
/rebuild |
/run-all-tests |
/run-integration-test |
/merge |
@Lloyd-Pottiger: It seems you want to merge this PR, I will help you trigger all the tests: /run-all-tests You only need to trigger If you have any questions about the PR merge process, please refer to pr process. 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. |
This pull request has been accepted and is ready to merge. Commit hash: 58128a5
|
/cherry-pick release-6.4 |
@Lloyd-Pottiger: new pull request created: #6256. In response to this:
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. |
Signed-off-by: Lloyd-Pottiger yan1579196623@gmail.com
What problem does this PR solve?
Issue Number: close #6254
Problem Summary:
What is changed and how it works?
tidb_enable_clustered_index
fromINT_ONLY
toON
Check List
Tests
Side effects
Documentation
Release note