{"record":{"id":"9a31837ff4720115","repo":"apache/flink","slug":"unsupported-type-9a3183","errorCode":null,"errorMessage":"Unsupported type: {}","messagePattern":"Unsupported type: (.+?)","errorType":"validation","errorClass":"UnsupportedOperationException","httpStatus":null,"severity":"error","filePath":"flink-formats/flink-orc/src/main/java/org/apache/flink/orc/vector/AbstractOrcColumnVector.java","lineNumber":129,"sourceCode":"            case INTEGER:\n            case BIGINT:\n                return createLongVector(batchSize, value);\n            case DECIMAL:\n                DecimalType decimalType = (DecimalType) type;\n                return createDecimalVector(\n                        batchSize, decimalType.getPrecision(), decimalType.getScale(), value);\n            case FLOAT:\n            case DOUBLE:\n                return createDoubleVector(batchSize, value);\n            case DATE:\n                if (value instanceof LocalDate) {\n                    value = Date.valueOf((LocalDate) value);\n                }\n                return createLongVector(batchSize, toInternal((Date) value));\n            case TIMESTAMP_WITHOUT_TIME_ZONE:\n                return TimestampUtil.createVectorFromConstant(batchSize, value);\n            default:\n                throw new UnsupportedOperationException(\"Unsupported type: \" + type);\n        }\n    }\n\n    private static LongColumnVector createLongVector(int batchSize, Object value) {\n        LongColumnVector lcv = new LongColumnVector(batchSize);\n        if (value == null) {\n            lcv.noNulls = false;\n            lcv.isNull[0] = true;\n            lcv.isRepeating = true;\n        } else {\n            lcv.fill(((Number) value).longValue());\n            lcv.isNull[0] = false;\n        }\n        return lcv;\n    }\n\n    private static BytesColumnVector createBytesVector(int batchSize, Object value) {\n        BytesColumnVector bcv = new BytesColumnVector(batchSize);","sourceCodeStart":111,"sourceCodeEnd":147,"githubUrl":"https://github.com/apache/flink/blob/2f3c205e9266cb30240eb7f4fdab15cad629a70f/flink-formats/flink-orc/src/main/java/org/apache/flink/orc/vector/AbstractOrcColumnVector.java#L111-L147","documentation":"Error \"Unsupported type: {}\" thrown in apache/flink.","triggerScenarios":"Triggered at runtime when the operation fails because: Unsupported type: the reported value.","commonSituations":"Commonly caused by misconfiguration, missing dependencies or files, unsupported types or operations, or invalid user input leading to: Unsupported type: the reported value.","solutions":["Address the cause reported by the error message: Unsupported type: the reported value","Verify the inputs, configuration values, and classpath/dependency setup related to this operation, then retry."],"exampleFix":"Correct the condition described (\"Unsupported type: the reported value\") and rerun the job or command.","handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"2f3c205e9266cb30240eb7f4fdab15cad629a70f","analyzedAt":"2026-08-14T08:48:24.518Z","schemaVersion":2},"datasetVersion":"2026-08-14T10:17:34.591Z"}