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 4d1f6c52c [doc] fix spark change column type without quotes(#1792)
4d1f6c52c is described below
commit 4d1f6c52c971f3c6d6c2223bc8e7ffa978194d65
Author: hekaifei <[email protected]>
AuthorDate: Fri Aug 11 11:59:04 2023 +0800
[doc] fix spark change column type without quotes(#1792)
---
docs/content/how-to/altering-tables.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content/how-to/altering-tables.md
b/docs/content/how-to/altering-tables.md
index b52b4fcc4..39c3038b4 100644
--- a/docs/content/how-to/altering-tables.md
+++ b/docs/content/how-to/altering-tables.md
@@ -405,7 +405,7 @@ ALTER TABLE my_table MODIFY col_a DOUBLE;
{{< tab "Spark3" >}}
```sql
-ALTER TABLE my_table ALTER COLUMN col_a TYPE 'DOUBLE';
+ALTER TABLE my_table ALTER COLUMN col_a TYPE DOUBLE;
```
{{< /tab >}}