com.hazelcast.jet.sql.impl.connector.infoschema.UDTAttributesTable Maven / Gradle / Ivy
/*
* Copyright 2024 Hazelcast Inc.
*
* Licensed under the Hazelcast Community License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://hazelcast.com/hazelcast-community-license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.jet.sql.impl.connector.infoschema;
import com.hazelcast.jet.sql.impl.validate.types.HazelcastTypeUtils;
import com.hazelcast.sql.impl.schema.ConstantTableStatistics;
import com.hazelcast.sql.impl.schema.TableField;
import com.hazelcast.sql.impl.schema.type.Type;
import com.hazelcast.sql.impl.type.QueryDataType;
import com.hazelcast.sql.impl.type.QueryDataTypeFamily;
import java.util.ArrayList;
import java.util.List;
import static java.util.Arrays.asList;
public class UDTAttributesTable extends InfoSchemaTable {
private static final String NAME = "attributes";
private static final List FIELDS = asList(
new TableField("udt_catalog", QueryDataType.VARCHAR, false),
new TableField("udt_schema", QueryDataType.VARCHAR, false),
new TableField("udt_name", QueryDataType.VARCHAR, false),
new TableField("attribute_name", QueryDataType.VARCHAR, false),
new TableField("ordinal_position", QueryDataType.INT, false),
new TableField("attribute_default", QueryDataType.VARCHAR, false),
new TableField("is_nullable", QueryDataType.VARCHAR, false),
new TableField("data_type", QueryDataType.VARCHAR, false),
new TableField("character_maximum_length", QueryDataType.INT, false),
new TableField("character_octet_length", QueryDataType.VARCHAR, false),
new TableField("character_set_catalog", QueryDataType.VARCHAR, false),
new TableField("character_set_schema", QueryDataType.VARCHAR, false),
new TableField("character_set_name", QueryDataType.VARCHAR, false),
new TableField("collation_catalog", QueryDataType.VARCHAR, false),
new TableField("collation_schema", QueryDataType.VARCHAR, false),
new TableField("collation_name", QueryDataType.VARCHAR, false),
new TableField("numeric_precision", QueryDataType.INT, false),
new TableField("numeric_precision_radix", QueryDataType.INT, false),
new TableField("numeric_scale", QueryDataType.INT, false),
new TableField("datetime_precision", QueryDataType.INT, false),
new TableField("interval_type", QueryDataType.VARCHAR, false),
new TableField("interval_precision", QueryDataType.INT, false),
new TableField("attribute_udt_catalog", QueryDataType.VARCHAR, false),
new TableField("attribute_udt_schema", QueryDataType.VARCHAR, false),
new TableField("attribute_udt_name", QueryDataType.VARCHAR, false),
new TableField("scope_catalog", QueryDataType.VARCHAR, false),
new TableField("scope_schema", QueryDataType.VARCHAR, false),
new TableField("scope_name", QueryDataType.VARCHAR, false),
new TableField("maximum_cardinality", QueryDataType.INT, false),
new TableField("dtd_identifier", QueryDataType.VARCHAR, false),
new TableField("is_derived_reference_attribute", QueryDataType.VARCHAR, false)
);
private final String schema;
private final List types;
public UDTAttributesTable(String catalog, String schemaName, String typesSchema, final List types) {
super(
FIELDS,
catalog,
schemaName,
NAME,
new ConstantTableStatistics(0)
);
this.schema = typesSchema;
this.types = types;
}
@Override
protected List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy