diff --git a/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/TestHiveCompatibility.java b/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/TestHiveCompatibility.java index 79874bf2a3b2..ce981e1493b7 100644 --- a/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/TestHiveCompatibility.java +++ b/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/TestHiveCompatibility.java @@ -207,7 +207,7 @@ public void testSmallDecimalFieldWrittenByOptimizedParquetWriterCannotBeReadByHi // Hive expects `FIXED_LEN_BYTE_ARRAY` for decimal values irrespective of the Parquet specification which allows `INT32`, `INT64` for short precision decimal types assertQueryFailure(() -> onHive().executeQuery("SELECT a_decimal FROM " + tableName)) - .hasMessageMatching(".* org.apache.parquet.io.ParquetDecodingException: Can not read value at 1 in block 0 in file .*"); + .hasMessageMatching(".*ParquetDecodingException: Can not read value at 1 in block 0 in file .*"); onTrino().executeQuery(format("DROP TABLE %s", tableName)); }