Skip to content

Commit

Permalink
Remove redundant format
Browse files Browse the repository at this point in the history
  • Loading branch information
Praveen2112 committed Jan 13, 2022
1 parent 95c1eb0 commit 6a1e27f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ public static OrcWriterOptions getOrcWriterOptions(Properties schema, OrcWriterO
{
if (schema.containsKey(ORC_BLOOM_FILTER_COLUMNS)) {
if (!schema.containsKey(ORC_BLOOM_FILTER_FPP)) {
throw new TrinoException(HIVE_INVALID_METADATA, format("FPP for bloom filter is missing"));
throw new TrinoException(HIVE_INVALID_METADATA, "FPP for bloom filter is missing");
}
try {
double fpp = parseDouble(schema.getProperty(ORC_BLOOM_FILTER_FPP));
Expand Down

0 comments on commit 6a1e27f

Please sign in to comment.