This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 61a0e17b36 [doc] Fix typo of deletion vectors (#5131)
61a0e17b36 is described below
commit 61a0e17b36cc69e399c4891d101f3e3e5f3cb22d
Author: yuzelin <[email protected]>
AuthorDate: Fri Feb 21 15:48:06 2025 +0800
[doc] Fix typo of deletion vectors (#5131)
---
docs/content/primary-key-table/query-performance.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/primary-key-table/query-performance.md
b/docs/content/primary-key-table/query-performance.md
index c32f1c5e66..fe30285299 100644
--- a/docs/content/primary-key-table/query-performance.md
+++ b/docs/content/primary-key-table/query-performance.md
@@ -47,7 +47,7 @@ You can use file index to table with Deletion Vectors
enabled, it filters files
```sql
CREATE TABLE <PAIMON_TABLE> WITH (
- 'deletion-vectors' = 'true',
+ 'deletion-vectors.enabled' = 'true',
'file-index.bloom-filter.columns' = 'c1,c2',
'file-index.bloom-filter.c1.items' = '200'
);