Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
package com.facebook.presto.common.type;

import com.facebook.presto.common.NotSupportedException;
import com.facebook.presto.common.InvalidFunctionArgumentException;
import com.facebook.presto.common.block.Block;
import com.facebook.presto.common.block.BlockBuilder;
import io.airlift.slice.Slice;
Expand Down Expand Up @@ -189,7 +189,7 @@ public static boolean isFloatingPointNaN(Type type, Object value)
static void checkElementNotNull(boolean isNull, String errorMsg)
{
if (isNull) {
throw new NotSupportedException(errorMsg);
throw new InvalidFunctionArgumentException(errorMsg);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import java.util.List;

import static com.facebook.presto.common.type.BigintType.BIGINT;
import static com.facebook.presto.spi.StandardErrorCode.INVALID_FUNCTION_ARGUMENT;
import static com.facebook.presto.spi.StandardErrorCode.NOT_SUPPORTED;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Throwables.throwIfUnchecked;
Expand Down Expand Up @@ -174,7 +175,7 @@ public static Page getHashPage(Page page, List<? extends Type> types, List<Integ
public static void checkElementNotNull(boolean isNull, String errorMsg)
{
if (isNull) {
throw new PrestoException(NOT_SUPPORTED, errorMsg);
throw new PrestoException(INVALID_FUNCTION_ARGUMENT, errorMsg);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -710,13 +710,13 @@ public void testArrayMinWithNullsInBothArraysNotComparedSecondIsMin()
@Test
public void testArrayMinWithNullInFirstArrayIsCompared()
{
assertInvalidFunction("ARRAY_MIN(ARRAY [ARRAY[1, NULL], ARRAY[1, 2]])", NOT_SUPPORTED);
assertInvalidFunction("ARRAY_MIN(ARRAY [ARRAY[1, NULL], ARRAY[1, 2]])", INVALID_FUNCTION_ARGUMENT);
}

@Test
public void testArrayMinWithNullInSecondArrayIsCompared()
{
assertInvalidFunction("ARRAY_MIN(ARRAY [ARRAY[1, 2], ARRAY[1, NULL]])", NOT_SUPPORTED);
assertInvalidFunction("ARRAY_MIN(ARRAY [ARRAY[1, 2], ARRAY[1, NULL]])", INVALID_FUNCTION_ARGUMENT);
}

@Test
Expand Down Expand Up @@ -764,13 +764,13 @@ public void testArrayMaxWithNullsInBothArraysNotComparedFirstIsMax()
@Test
public void testArrayMaxWithNullInFirstArrayIsCompared()
{
assertInvalidFunction("ARRAY_MAX(ARRAY [ARRAY[1, NULL], ARRAY[1, 2]])", NOT_SUPPORTED);
assertInvalidFunction("ARRAY_MAX(ARRAY [ARRAY[1, NULL], ARRAY[1, 2]])", INVALID_FUNCTION_ARGUMENT);
}

@Test
public void testArrayMaxWithNullInSecondArrayIsCompared()
{
assertInvalidFunction("ARRAY_MAX(ARRAY [ARRAY[1, 2], ARRAY[1, NULL]])", NOT_SUPPORTED);
assertInvalidFunction("ARRAY_MAX(ARRAY [ARRAY[1, 2], ARRAY[1, NULL]])", INVALID_FUNCTION_ARGUMENT);
}

@Test
Expand Down Expand Up @@ -1145,7 +1145,7 @@ public void testSort()
assertInvalidFunction(
"ARRAY_SORT(ARRAY[ARRAY[1], ARRAY[null]])",
INVALID_FUNCTION_ARGUMENT,
"Array contains elements not supported for comparison");
"ARRAY comparison not supported for arrays with null elements");
Comment thread
duxiao1212 marked this conversation as resolved.
assertInvalidFunction(
"ARRAY_SORT(ARRAY[ROW(1), ROW(null)])",
INVALID_FUNCTION_ARGUMENT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ public void testRowComparison()
assertInvalidFunction("row(TRUE, ARRAY [1, 2], MAP(ARRAY[1, 3], ARRAY[2.0E0, 4.0E0])) > row(TRUE, ARRAY [1, 2], MAP(ARRAY[1, 3], ARRAY[2.0E0, 4.0E0]))",
SemanticErrorCode.TYPE_MISMATCH, "line 1:64: '>' cannot be applied to row(boolean,array(integer),map(integer,double)), row(boolean,array(integer),map(integer,double))");

assertInvalidFunction("row(1, CAST(NULL AS INTEGER)) < row(1, 2)", StandardErrorCode.NOT_SUPPORTED);
assertInvalidFunction("row(1, CAST(NULL AS INTEGER)) < row(1, 2)", StandardErrorCode.INVALID_FUNCTION_ARGUMENT);

assertComparisonCombination("row(1.0E0, ARRAY [1,2,3], row(2, 2.0E0))", "row(1.0E0, ARRAY [1,3,3], row(2, 2.0E0))");
assertComparisonCombination("row(TRUE, ARRAY [1])", "row(TRUE, ARRAY [1, 2])");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3234,6 +3234,36 @@ public void testTry()

// test try with null
assertQuery("SELECT TRY(1 / x) FROM (SELECT NULL as x)", "SELECT NULL");

// Test try with map method and value parameter is optional and argument is an array with null,
// the error should be suppressed and just return null.
assertQuery("SELECT\n" +
" TRY(map_keys_by_top_n_values(c0, BIGINT '6455219767830808341'))\n" +
"FROM (\n" +
" VALUES\n" +
" MAP(\n" +
" ARRAY[1, 2], ARRAY[\n" +
" ARRAY[1, null],\n" +
" ARRAY[1, null]\n" +
" ]\n" +
" )\n" +
") t(c0)", "SELECT NULL");

assertQuery("SELECT\n" +
" TRY(map_keys_by_top_n_values(c0, BIGINT '6455219767830808341'))\n" +
"FROM (\n" +
" VALUES\n" +
" MAP(\n" +
" ARRAY[1, 2], ARRAY[\n" +
" ARRAY[null, null],\n" +
" ARRAY[1, 2]\n" +
" ]\n" +
" )\n" +
") t(c0)", "SELECT NULL");

// Test try with array method with an input array containing null values.
// the error should be suppressed and just return null.
assertQuery("SELECT TRY(ARRAY_MAX(ARRAY [ARRAY[1, NULL], ARRAY[1, 2]]))", "SELECT NULL");
}

@Test
Expand Down