Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Jul 12, 2023
1 parent 37b3e5e commit 227c7dd
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,6 @@ public void addBatchSingle(int rowStart, int rowEnd, long placeAddr, Object[] co
public void addBatchPlaces(int rowStart, int rowEnd, long placeAddr, int offset, Object[] column)
throws UdfRuntimeException {
try {
Preconditions.checkState(column != null, "column != null");
Preconditions.checkState(udf != null, "udf != null");
Preconditions.checkState(stateObjMap != null, "stateObjMap != null");
Preconditions.checkState(methodAccess != null, "methodAccess != null");
Preconditions.checkState(argTypes != null, "argTypes != null");
Preconditions.checkState(argTypes.length == column.length, "argTypes.length != " + argTypes.length + " " + column.length);
Preconditions.checkState(rowEnd > rowStart, "rowStart rowEnd " + rowStart + " " + rowEnd );
Object[][] inputs = (Object[][]) column;
ArrayList<Object> placeState = new ArrayList<>(rowEnd - rowStart);
for (int row = rowStart; row < rowEnd; ++row) {
Expand Down

0 comments on commit 227c7dd

Please sign in to comment.