vibhutisawant commented on a change in pull request #26254: [SPARK-26985][CORE]
Fix "access only some column of the all of columns " for big endian architecture
URL: https://github.com/apache/spark/pull/26254#discussion_r339404850
##########
File path: common/unsafe/src/main/java/org/apache/spark/unsafe/Platform.java
##########
@@ -47,7 +47,7 @@
static {
boolean _unaligned;
String arch = System.getProperty("os.arch", "");
- if (arch.equals("ppc64le") || arch.equals("ppc64")) {
+ if (arch.equals("ppc64le") || arch.equals("ppc64") ||
arch.matches("s390x")) {
Review comment:
Added a commit with the change `arch.equals("s390x")`, as it is on master
branch.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]