com.facebook.presto.iceberg.IcebergErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of presto-iceberg Show documentation
Show all versions of presto-iceberg Show documentation
Presto - Iceberg Connector
The newest version!
/*
* 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
*
* 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 com.facebook.presto.iceberg;
import com.facebook.presto.common.ErrorCode;
import com.facebook.presto.common.ErrorType;
import com.facebook.presto.spi.ErrorCodeSupplier;
import static com.facebook.presto.common.ErrorType.EXTERNAL;
import static com.facebook.presto.common.ErrorType.INTERNAL_ERROR;
import static com.facebook.presto.common.ErrorType.USER_ERROR;
public enum IcebergErrorCode
implements ErrorCodeSupplier
{
ICEBERG_UNKNOWN_TABLE_TYPE(0, EXTERNAL),
ICEBERG_INVALID_METADATA(1, EXTERNAL),
ICEBERG_TOO_MANY_OPEN_PARTITIONS(2, USER_ERROR),
ICEBERG_INVALID_PARTITION_VALUE(3, EXTERNAL),
ICEBERG_BAD_DATA(4, EXTERNAL),
ICEBERG_MISSING_DATA(5, EXTERNAL),
ICEBERG_CANNOT_OPEN_SPLIT(6, EXTERNAL),
ICEBERG_WRITER_OPEN_ERROR(7, EXTERNAL),
ICEBERG_FILESYSTEM_ERROR(8, EXTERNAL),
ICEBERG_WRITE_VALIDATION_FAILED(10, INTERNAL_ERROR),
ICEBERG_INVALID_SNAPSHOT_ID(11, USER_ERROR),
ICEBERG_INVALID_TABLE_TIMESTAMP(12, USER_ERROR),
ICEBERG_ROLLBACK_ERROR(13, EXTERNAL),
ICEBERG_INVALID_FORMAT_VERSION(14, USER_ERROR),
ICEBERG_UNKNOWN_MANIFEST_TYPE(15, EXTERNAL),
ICEBERG_CACHE_WRITE_ERROR(16, INTERNAL_ERROR);
private final ErrorCode errorCode;
IcebergErrorCode(int code, ErrorType type)
{
errorCode = new ErrorCode(code + 0x0504_0000, name(), type);
}
@Override
public ErrorCode toErrorCode()
{
return errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy