All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.jdbc.spi.SearchResolver Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
/*******************************************************************
 * © 2021 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.jdbc.spi;

import com.google.common.annotations.Beta;
import com.sap.cds.ql.cqn.CqnSelect;

/**
 * Resolves the CQN search predicate of a given select into a datastore specific
 * predicate.
 */
@Beta
public interface SearchResolver {

	CqnSelect resolve(CqnSelect select);

	// TODO get rid of this or push to AbstractSearchResolver
	default void pushDownSearchToSubquery(CqnSelect select, CqnSelect subquery) {
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy