This is an automated email from the ASF dual-hosted git repository.
danny0405 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 6c0ce96d6e06 [Docs] Remove single quotes while setting Hudi Writer
configuration (#13777)
6c0ce96d6e06 is described below
commit 6c0ce96d6e0610c5fef2ebf7336f0cbb39846c93
Author: Ranga Reddy <[email protected]>
AuthorDate: Tue Aug 26 12:42:43 2025 +0530
[Docs] Remove single quotes while setting Hudi Writer configuration (#13777)
---
website/docs/quick-start-guide.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/docs/quick-start-guide.md
b/website/docs/quick-start-guide.md
index a7c347143ff6..cbf5ad8f1798 100644
--- a/website/docs/quick-start-guide.md
+++ b/website/docs/quick-start-guide.md
@@ -313,7 +313,7 @@ the INSERT statement:
```sql
-- bulk_insert using INSERT_INTO
-SET hoodie.spark.sql.insert.into.operation = 'bulk_insert'
+SET hoodie.spark.sql.insert.into.operation = bulk_insert;
```
</TabItem>