blob: 3532a1e5dba11b9926df03d6d5e8c837c67de22e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.
*/
package org.apache.flink.connector.jdbc.databases.cratedb.catalog;
import org.apache.flink.annotation.Internal;
import org.apache.flink.connector.jdbc.databases.postgres.catalog.PostgresTypeMapper;
import org.apache.flink.table.api.DataTypes;
import org.apache.flink.table.types.DataType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** CrateDBTypeMapper util class. */
@Internal
public class CrateDBTypeMapper extends PostgresTypeMapper {
private static final Logger LOG = LoggerFactory.getLogger(CrateDBTypeMapper.class);
// CrateDB jdbc driver uses very similar mapping
// to PostgreSQL driver, and adds some extras:
private static final String PG_STRING = "string";
private static final String PG_STRING_ARRAY = "_string";
@Override
protected DataType getMapping(String pgType, int precision, int scale) {
switch (pgType) {
case PG_SERIAL:
case PG_BIGSERIAL:
return null;
case PG_STRING:
return DataTypes.STRING();
case PG_STRING_ARRAY:
return DataTypes.ARRAY(DataTypes.STRING());
default:
return super.getMapping(pgType, precision, scale);
}
}
@Override
protected String getDBType() {
return "CrateDB";
}
}