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,6 +13,8 @@
*/
package io.trino.spi.expression;

import io.trino.spi.type.ArrayType;

public final class StandardFunctions
{
private StandardFunctions() {}
Expand Down Expand Up @@ -91,7 +93,7 @@ private StandardFunctions() {}
public static final FunctionName IN_PREDICATE_FUNCTION_NAME = new FunctionName("$in");

/**
* $array creates instance of {@link Array Type}
* $array creates instance of {@link ArrayType}
*/
public static final FunctionName ARRAY_CONSTRUCTOR_FUNCTION_NAME = new FunctionName("$array");
}
Original file line number Diff line number Diff line change
Expand Up @@ -275,18 +275,16 @@ public void testRenameTable()

@Override
public void testUpdateTableColumnStatisticsEmptyOptionalFields()
throws Exception
{
// this test expect consistency between written and read stats but this is not provided by glue at the moment
// this test expects consistency between written and read stats but this is not provided by glue at the moment
// when writing empty min/max statistics glue will return 0 to the readers
// in order to avoid incorrect data we skip writes for statistics with min/max = null
}

@Override
public void testUpdatePartitionColumnStatisticsEmptyOptionalFields()
throws Exception
{
// this test expect consistency between written and read stats but this is not provided by glue at the moment
// this test expects consistency between written and read stats but this is not provided by glue at the moment
// when writing empty min/max statistics glue will return 0 to the readers
// in order to avoid incorrect data we skip writes for statistics with min/max = null
}
Expand Down