This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 3d364f6d95 Docs: Fix SQL in branching docs (#10876)
3d364f6d95 is described below
commit 3d364f6d95600be4e5320fc5931bb51b2af61de6
Author: k.nakagaki <[email protected]>
AuthorDate: Tue Aug 6 05:50:21 2024 +0900
Docs: Fix SQL in branching docs (#10876)
---
docs/docs/branching.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/branching.md b/docs/docs/branching.md
index 3379264d8a..f00defda66 100644
--- a/docs/docs/branching.md
+++ b/docs/docs/branching.md
@@ -148,7 +148,7 @@ SELECT * FROM db.table.branch_test_branch;
Modify the table's schema by dropping the `col` column and adding a new column
named `new_col`:
```sql
-ALTER TABLE db.table drop column float;
+ALTER TABLE db.table drop column col;
ALTER TABLE db.table add column new_col date;