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

com.hazelcast.sql.impl.calcite.validate.types.HazelcastObjectType Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in com.hazelcast.com.liance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.com.hazelcast.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.hazelcast.com.hazelcast.sql.impl.calcite.validate.types;

import com.hazelcast.com.hazelcast.sql.impl.type.QueryDataTypeFamily;
import com.hazelcast.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.org.apache.calcite.sql.type.BasicSqlType;
import com.hazelcast.org.apache.calcite.sql.type.SqlTypeName;

/**
 * Represents Hazelcast OBJECT type for Calcite type system.
 * 

* Basically the same as {@link BasicSqlType} of {@link SqlTypeName#ANY} type, * but has a more friendly name "OBJECT" instead of "ANY". */ public final class HazelcastObjectType extends BasicSqlType { /** * Non-nullable instance of Hazelcast OBJECT type. */ public static final RelDataType INSTANCE = new HazelcastObjectType(false); /** * Nullable instance of Hazelcast OBJECT type. */ public static final RelDataType NULLABLE_INSTANCE = new HazelcastObjectType(true); private HazelcastObjectType(boolean nullable) { super(HazelcastTypeSystem.INSTANCE, SqlTypeName.ANY); this.isNullable = nullable; // recompute the digest to reflect the nullability of the type com.hazelcast.com.uteDigest(); } @Override protected void generateTypeString(StringBuilder sb, boolean withDetail) { sb.append(QueryDataTypeFamily.OBJECT.name()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy