Toggle navigation
Home
com.facebook.presto.spi.predicate.NullableValue to com.facebook.presto.spi.relation.ConstantExpression
No. of Instances - 43
No. of Commits - 1
No. of Projects - {'presto'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
NullableValue
to
ConstantExpression
Optional<NullableValue>
to
Optional<ConstantExpression>
Optional<NullableValue>
to
Optional<ConstantExpression>
Add or Remove Method invocation
rightArgument.getColumn()
to
rightArgument.getVariableReference()
extractFixedValues(tupleDomain).orElse(ImmutableMap.of())
to
extractFixedValuesToConstantExpressions(tupleDomain).orElse(ImmutableMap.of())
partitioningScheme.getPartitioning().getArguments().stream().map(argument -> { if (argument.isConstant()) { return Optional.of(argument.getConstant()); } return Optional.<NullableValue>empty(); } ).collect(toImmutableList())
to
partitioningScheme.getPartitioning().getArguments().stream().map(argument -> { if (argument.isConstant()) { return Optional.of(argument.getConstant()); } return Optional.<ConstantExpression>empty(); } ).collect(toImmutableList())
requireNonNull(partitionConstants,"partitionConstants is null").stream().map(constant -> constant.map(NullableValue::asBlock)).collect(toImmutableList())
to
requireNonNull(partitionConstants,"partitionConstants is null").stream().map(constant -> constant.map(ConstantExpression::getValueBlock)).collect(toImmutableList())
leftArgument.getColumn()
to
leftArgument.getVariableReference()