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

com.sap.cds.ql.cqn.CqnUpsert Maven / Gradle / Ivy

The newest version!
/************************************************************************
 * © 2019-2023 SAP SE or an SAP affiliate company. All rights reserved. *
 ************************************************************************/
package com.sap.cds.ql.cqn;

import java.util.List;
import java.util.Map;

public interface CqnUpsert extends CqnXsert {

	/**
	 * The entries to be upserted by this statement.
	 * 
	 * @return a reference to the upsert statement's entries
	 */
	@Override
	List> entries();

	@Override
	default boolean isUpsert() {
		return true;
	}

	@Override
	default CqnUpsert asUpsert() {
		return this;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy