Skip to content

Commit

Permalink
docs: fix syntax tree error.
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGao01 committed Jan 24, 2024
1 parent bb9ec77 commit a7bedbf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/reference/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ ALTER TABLE tb_name alter_table_option;

alter_table_option: {
ADD TAG col_name
| ADD FIELD col_name [CODEC(code_type)]
| ADD FIELD col_name [data_type] [CODEC(code_type)]
| ALTER col_name SET CODEC(code_type)
| DROP col_name
| RENAME COLUMN col_name TO new_col_name
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.3.2/reference/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ ALTER TABLE tb_name alter_table_option;

alter_table_option: {
ADD TAG col_name
| ADD FIELD col_name [CODEC(code_type)]
| ADD FIELD col_name [data_type] [CODEC(code_type)]
| ALTER col_name SET CODEC(code_type)
| DROP col_name
| RENAME COLUMN col_name TO new_col_name
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.3.4/reference/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ ALTER TABLE tb_name alter_table_option;

alter_table_option: {
ADD TAG col_name
| ADD FIELD col_name [CODEC(code_type)]
| ADD FIELD col_name [data_type] [CODEC(code_type)]
| ALTER col_name SET CODEC(code_type)
| DROP col_name
}
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.4.0/reference/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ ALTER TABLE tb_name alter_table_option;

alter_table_option: {
ADD TAG col_name
| ADD FIELD col_name [CODEC(code_type)]
| ADD FIELD col_name [data_type] [CODEC(code_type)]
| ALTER col_name SET CODEC(code_type)
| DROP col_name
| RENAME COLUMN col_name TO new_col_name
Expand Down

0 comments on commit a7bedbf

Please sign in to comment.