This is an automated email from the ASF dual-hosted git repository.
nicholasjiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new fb5e85b3b [core] Fix the typo in the description of
orc.bloom.filter.columns (#906)
fb5e85b3b is described below
commit fb5e85b3bd5c6d6362cdea08e571b75c9f38f2c0
Author: Xiao Zhao <[email protected]>
AuthorDate: Fri Apr 14 12:14:12 2023 +0800
[core] Fix the typo in the description of orc.bloom.filter.columns (#906)
---
docs/layouts/shortcodes/generated/core_configuration.html | 2 +-
paimon-core/src/main/java/org/apache/paimon/CoreOptions.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/layouts/shortcodes/generated/core_configuration.html
b/docs/layouts/shortcodes/generated/core_configuration.html
index 49fb22a92..62a9f6537 100644
--- a/docs/layouts/shortcodes/generated/core_configuration.html
+++ b/docs/layouts/shortcodes/generated/core_configuration.html
@@ -210,7 +210,7 @@
<td><h5>orc.bloom.filter.columns</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>String</td>
- <td>A comma-separated list of columns for which to create a bloon
filter when writing.</td>
+ <td>A comma-separated list of columns for which to create a bloom
filter when writing.</td>
</tr>
<tr>
<td><h5>orc.bloom.filter.fpp</h5></td>
diff --git a/paimon-core/src/main/java/org/apache/paimon/CoreOptions.java
b/paimon-core/src/main/java/org/apache/paimon/CoreOptions.java
index aac6fc36f..c27d8b26a 100644
--- a/paimon-core/src/main/java/org/apache/paimon/CoreOptions.java
+++ b/paimon-core/src/main/java/org/apache/paimon/CoreOptions.java
@@ -94,7 +94,7 @@ public class CoreOptions implements Serializable {
.stringType()
.noDefaultValue()
.withDescription(
- "A comma-separated list of columns for which to
create a bloon filter when writing.");
+ "A comma-separated list of columns for which to
create a bloom filter when writing.");
public static final ConfigOption<Double> ORC_BLOOM_FILTER_FPP =
key("orc.bloom.filter.fpp")