/* * Licensed to CRATE Technology GmbH ("Crate") under one or more contributor * license agreements. See the NOTICE file distributed with this work for * additional information regarding copyright ownership. Crate licenses * this file to you 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 * * http://www.apache.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. * * However, if you have executed another commercial license agreement * with Crate these terms will supersede the license and you may use the * software solely pursuant to the terms of the relevant commercial agreement. */ package io.crate.metadata.information; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSortedMap; import io.crate.metadata.*; import io.crate.metadata.table.ColumnPolicy; import io.crate.types.DataType; import io.crate.types.DataTypes; import org.elasticsearch.cluster.service.ClusterService; public class InformationColumnsTableInfo extends InformationTableInfo { public static final String NAME = "columns"; public static final TableIdent IDENT = new TableIdent(InformationSchemaInfo.NAME, NAME); public static class Columns { public static final ColumnIdent TABLE_SCHEMA = new ColumnIdent("table_schema"); public static final ColumnIdent TABLE_NAME = new ColumnIdent("table_name"); public static final ColumnIdent COLUMN_NAME = new ColumnIdent("column_name"); public static final ColumnIdent ORDINAL_POSITION = new ColumnIdent("ordinal_position"); public static final ColumnIdent DATA_TYPE = new ColumnIdent("data_type"); public static final ColumnIdent IS_GENERATED = new ColumnIdent("is_generated"); public static final ColumnIdent IS_NULLABLE = new ColumnIdent("is_nullable"); public static final ColumnIdent GENERATION_EXPRESSION = new ColumnIdent("generation_expression"); } public static class References { public static final Reference TABLE_SCHEMA = info(Columns.TABLE_SCHEMA, DataTypes.STRING, false); public static final Reference TABLE_NAME = info(Columns.TABLE_NAME, DataTypes.STRING, false); public static final Reference COLUMN_NAME = info(Columns.COLUMN_NAME, DataTypes.STRING, false); public static final Reference ORDINAL_POSITION = info(Columns.ORDINAL_POSITION, DataTypes.SHORT, false); public static final Reference DATA_TYPE = info(Columns.DATA_TYPE, DataTypes.STRING, false); public static final Reference IS_GENERATED = info(Columns.IS_GENERATED, DataTypes.BOOLEAN, false); public static final Reference IS_NULLABLE = info(Columns.IS_NULLABLE, DataTypes.BOOLEAN, false); public static final Reference GENERATION_EXPRESSION = info(Columns.GENERATION_EXPRESSION, DataTypes.STRING, true); } private static Reference info(ColumnIdent columnIdent, DataType dataType, Boolean nullable) { return new Reference(new ReferenceIdent(IDENT, columnIdent), RowGranularity.DOC, dataType, ColumnPolicy.DYNAMIC, Reference.IndexType.NOT_ANALYZED, nullable); } protected InformationColumnsTableInfo(ClusterService clusterService) { super(clusterService, IDENT, ImmutableList.of(Columns.TABLE_NAME, Columns.TABLE_SCHEMA, Columns.COLUMN_NAME), ImmutableSortedMap.<ColumnIdent, Reference>naturalOrder() .put(Columns.TABLE_SCHEMA, References.TABLE_SCHEMA) .put(Columns.TABLE_NAME, References.TABLE_NAME) .put(Columns.COLUMN_NAME, References.COLUMN_NAME) .put(Columns.ORDINAL_POSITION, References.ORDINAL_POSITION) .put(Columns.DATA_TYPE, References.DATA_TYPE) .put(Columns.IS_GENERATED, References.IS_GENERATED) .put(Columns.IS_NULLABLE, References.IS_NULLABLE) .put(Columns.GENERATION_EXPRESSION, References.GENERATION_EXPRESSION) .build() ); } }