A new version is available in the market at This updated version should be downloaded, extracted and saved into your path. Run the setup.exe file to install the drivers./*
* Copyright 2014 - 2020 Blazebit.
*
* 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
*
* 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.blazebit.persistence.impl.function.createarray;
import com.blazebit.persistence.spi.FunctionRenderContext;
import com.blazebit.persistence.spi.FunctionRenderType;
import com.blazebit.persistence.spi.JpqlFunction;
/**
* @author Christian Beikov
* @since 1.2.0
public abstract class CreateArrayFunction extends JpqlFunction {
public CreateArrayFunction() {
super("CREATE ARRAY", FunctionRenderType.CREATE);
}
@Override
public boolean hasDefaultValues() {
return true;
public boolean needsAutoImports() {
public boolean allowsNullParameters() {
public boolean hasTransactionalParameter() {
return false;
public void setParameterRenderContext(FunctionRenderContext parameter
Related links:
Комментарии