[ 
https://issues.apache.org/jira/browse/PHOENIX-4643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16388212#comment-16388212
 ] 

ASF GitHub Bot commented on PHOENIX-4643:
-----------------------------------------

Github user JamesRTaylor commented on a diff in the pull request:

    https://github.com/apache/phoenix/pull/294#discussion_r172604371
  
    --- Diff: 
phoenix-core/src/main/java/org/apache/phoenix/expression/function/ArrayRemoveFunction.java
 ---
    @@ -0,0 +1,102 @@
    +/*
    + * 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.phoenix.expression.function;
    +
    +import java.util.ArrayList;
    +import java.util.List;
    +
    +import org.apache.commons.lang.ArrayUtils;
    +import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
    +import org.apache.phoenix.expression.Expression;
    +import org.apache.phoenix.parse.FunctionParseNode;
    +import org.apache.phoenix.schema.SortOrder;
    +import org.apache.phoenix.schema.TypeMismatchException;
    +import org.apache.phoenix.schema.types.PArrayDataType;
    +import org.apache.phoenix.schema.types.PBinaryArray;
    +import org.apache.phoenix.schema.types.PDataType;
    +import org.apache.phoenix.schema.types.PVarbinary;
    +import org.apache.phoenix.schema.types.PVarbinaryArray;
    +import org.apache.phoenix.schema.types.PhoenixArray;
    +
    +@FunctionParseNode.BuiltInFunction(name = ArrayRemoveFunction.NAME, args = 
{
    +           @FunctionParseNode.Argument(allowedTypes = { 
PBinaryArray.class, PVarbinaryArray.class }),
    +           @FunctionParseNode.Argument(allowedTypes = { PVarbinary.class 
}, defaultValue = "null") })
    +public class ArrayRemoveFunction extends ArrayModifierFunction {
    +
    +   public static final String NAME = "ARRAY_REMOVE";
    +
    +   public ArrayRemoveFunction() {
    +   }
    +
    +   public ArrayRemoveFunction(List<Expression> children) throws 
TypeMismatchException {
    +           super(children);
    +   }
    +
    +   @Override
    +   protected boolean modifierFunction(ImmutableBytesWritable ptr, int 
length, int offset, byte[] arrayBytes,
    +                   PDataType baseType, int arrayLength, Integer maxLength, 
Expression arrayExp) {
    +           SortOrder sortOrder = arrayExp.getSortOrder();
    +
    +           if (ptr.getLength() == 0 || arrayBytes.length == 0) {
    +                   ptr.set(arrayBytes, offset, length);
    +                   return true;
    +           }
    +
    +           PhoenixArray array = (PhoenixArray) 
getDataType().toObject(arrayBytes, offset, length, getDataType(), sortOrder,
    +                           maxLength, null);
    --- End diff --
    
    This will potentially use a lot of memory for large arrays. It'd also be 
hit with the deserialization cost for every element. An alternative would be to 
make one pass through the binary array data and serialize the values as you go, 
skipping an element if it's equal to the one being removed.


>  Implement ARRAY_REMOVE built in function
> -----------------------------------------
>
>                 Key: PHOENIX-4643
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-4643
>             Project: Phoenix
>          Issue Type: New Feature
>            Reporter: Xavier Jodoin
>            Priority: Minor
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to