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

org.hibernate.query.sqm.tree.expression.function.SqmConcatFunction Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.query.sqm.tree.expression.function;

import java.util.List;

import org.hibernate.sql.ast.produce.metamodel.spi.BasicValuedExpressableType;
import org.hibernate.query.sqm.consume.spi.SemanticQueryWalker;
import org.hibernate.query.sqm.tree.expression.SqmConcat;
import org.hibernate.query.sqm.tree.expression.SqmExpression;

/**
 * Differs from {@link SqmConcat} in that
 * the function can have multiple arguments, whereas ConcatExpression only has 2.
 *
 * CONCAT is also one of Hibernate's standard SQM functions which every Dialect
 * must support.
 *
 * @see SqmConcat
 *
 * @author Steve Ebersole
 */
public class SqmConcatFunction extends AbstractSqmFunction {
	public static final String NAME = "concat";

	private final List expressions;

	public SqmConcatFunction(
			BasicValuedExpressableType resultType,
			List expressions) {
		super( resultType );
		this.expressions = expressions;

		assert expressions != null;
		assert expressions.size() >= 2;
	}

	@Override
	public String getFunctionName() {
		return NAME;
	}

	@Override
	public boolean hasArguments() {
		return true;
	}

	public List getExpressions() {
		return expressions;
	}

	@Override
	public  T accept(SemanticQueryWalker walker) {
		return walker.visitConcatFunction( this );
	}

	@Override
	public String asLoggableText() {
		return "CONCAT(...)";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy