Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Jan 4, 2017
1 parent a805b41 commit 32e527d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void setNullAt(int i) {
Platform.putLong(baseObject, getFieldOffset(i), 0);
}

public void setNullData(int ordinal) {
public void setNullForFixedLengthNonPrimitive(int ordinal) {
if (isNullAt(ordinal)) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class CodegenContext {
val setNull = if (!isVectorized && isMutableVarLenField) {
s"""
if ($row instanceof UnsafeRow) {
((UnsafeRow) $row).setNullData($ordinal);
((UnsafeRow) $row).setNullForFixedLengthNonPrimitive($ordinal);
} else {
$row.setNullAt($ordinal);
}
Expand Down

0 comments on commit 32e527d

Please sign in to comment.