Skip to content

Commit

Permalink
Improve exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk authored and findepi committed Jul 25, 2020
1 parent 0eace40 commit fdddcda
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void testReadFullAcidBucketedV2()
private void doTestReadFullAcid(boolean isPartitioned, BucketingType bucketingType)
{
if (getHiveVersionMajor() < 3) {
throw new SkipException("Presto Hive transactional tables are supported with Hive version 3 or above");
throw new SkipException("Hive transactional tables are supported with Hive version 3 or above");
}

try (TemporaryHiveTable table = TemporaryHiveTable.temporaryHiveTable(tableName("read_full_acid", isPartitioned, bucketingType))) {
Expand Down Expand Up @@ -147,7 +147,7 @@ private void doTestReadFullAcid(boolean isPartitioned, BucketingType bucketingTy
public void testReadInsertOnly(boolean isPartitioned, BucketingType bucketingType)
{
if (getHiveVersionMajor() < 3) {
throw new SkipException("Presto Hive transactional tables are supported with Hive version 3 or above");
throw new SkipException("Hive transactional tables are supported with Hive version 3 or above");
}

try (TemporaryHiveTable table = TemporaryHiveTable.temporaryHiveTable(tableName("insert_only", isPartitioned, bucketingType))) {
Expand Down

0 comments on commit fdddcda

Please sign in to comment.