forked from apache/hive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge latest trunk into branch. (Gunther Hagleitner)
git-svn-id: https://svn.apache.org/repos/asf/hive/branches/tez@1541190 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
481 changed files
with
16,346 additions
and
1,752 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
common/src/java/org/apache/hadoop/hive/common/type/HiveChar.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.hadoop.hive.common.type; | ||
|
||
import org.apache.commons.lang.StringUtils; | ||
|
||
/** | ||
* HiveChar. | ||
* String values will be padded to full char length. | ||
* Character legnth, comparison, hashCode should ignore trailing spaces. | ||
*/ | ||
public class HiveChar extends HiveBaseChar | ||
implements Comparable<HiveChar> { | ||
|
||
public static final int MAX_CHAR_LENGTH = 255; | ||
|
||
public HiveChar() { | ||
} | ||
|
||
public HiveChar(String val, int len) { | ||
setValue(val, len); | ||
} | ||
|
||
public HiveChar(HiveChar hc, int len) { | ||
setValue(hc.value, len); | ||
} | ||
|
||
/** | ||
* Set char value, padding or truncating the value to the size of len parameter. | ||
*/ | ||
public void setValue(String val, int len) { | ||
super.setValue(HiveBaseChar.getPaddedValue(val, len), -1); | ||
} | ||
|
||
public void setValue(String val) { | ||
setValue(val, -1); | ||
} | ||
|
||
public String getStrippedValue() { | ||
return StringUtils.stripEnd(value, " "); | ||
} | ||
|
||
protected String getPaddedValue() { | ||
return value; | ||
} | ||
|
||
public int getCharacterLength() { | ||
String strippedValue = getStrippedValue(); | ||
return strippedValue.codePointCount(0, strippedValue.length()); | ||
} | ||
|
||
public String toString() { | ||
return getPaddedValue(); | ||
} | ||
|
||
public int compareTo(HiveChar rhs) { | ||
if (rhs == this) { | ||
return 0; | ||
} | ||
return this.getStrippedValue().compareTo(rhs.getStrippedValue()); | ||
} | ||
|
||
public boolean equals(Object rhs) { | ||
if (rhs == this) { | ||
return true; | ||
} | ||
if (rhs == null || rhs.getClass() != getClass()) { | ||
return false; | ||
} | ||
return this.getStrippedValue().equals(((HiveChar) rhs).getStrippedValue()); | ||
} | ||
|
||
public int hashCode() { | ||
return getStrippedValue().hashCode(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.