This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new c4af5e5002d8 [DOCS] Update Query for Creating Secondary Index on
Secondary Index Blog (#13732)
c4af5e5002d8 is described below
commit c4af5e5002d8c67d99297eac13537e3f192283df
Author: vamsikarnika <[email protected]>
AuthorDate: Tue Aug 19 23:52:42 2025 +0530
[DOCS] Update Query for Creating Secondary Index on Secondary Index Blog
(#13732)
Co-authored-by: Vamsi <[email protected]>
---
website/blog/2025-04-02-secondary-index.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/website/blog/2025-04-02-secondary-index.md
b/website/blog/2025-04-02-secondary-index.md
index bb2bb3d33f2f..6dd1309644f8 100644
--- a/website/blog/2025-04-02-secondary-index.md
+++ b/website/blog/2025-04-02-secondary-index.md
@@ -103,8 +103,7 @@ LOCATION 'file:///tmp/hudi_test_table';
Now we can create a secondary index on the `city` field to optimize queries
filtering on this column.
```sql
-CREATE INDEX idx_city
-ON hudi_table USING secondary_index(city);
+CREATE INDEX idx_city ON hudi_table(city);
```
Now, when executing a query such as: