com.facebook.presto.tpch.util.PredicateUtils Maven / Gradle / Ivy
The newest version!
/*
* Licensed 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 com.facebook.presto.tpch.util;
import com.facebook.presto.common.predicate.NullableValue;
import com.facebook.presto.common.predicate.TupleDomain;
import com.facebook.presto.spi.ColumnHandle;
import com.facebook.presto.tpch.TpchColumnHandle;
import com.google.common.collect.ImmutableMap;
import java.util.function.Predicate;
public final class PredicateUtils
{
private PredicateUtils() {}
public static Predicate convertToPredicate(TupleDomain predicate, TpchColumnHandle columnHandle)
{
TupleDomain columnPredicate = filterColumns(predicate, columnHandle::equals);
return nullableValue -> columnPredicate.contains(TupleDomain.fromFixedValues(ImmutableMap.of(columnHandle, nullableValue)));
}
public static TupleDomain filterOutColumnFromPredicate(TupleDomain predicate, TpchColumnHandle columnHandle)
{
return filterColumns(predicate, tpchColumnHandle -> !tpchColumnHandle.equals(columnHandle));
}
public static TupleDomain filterColumns(TupleDomain predicate, Predicate filterPredicate)
{
return predicate.transform(columnHandle -> {
TpchColumnHandle tpchColumnHandle = (TpchColumnHandle) columnHandle;
if (filterPredicate.test(tpchColumnHandle)) {
return tpchColumnHandle;
}
return null;
});
}
}