Skip to content

Commit

Permalink
[MINOR] docs: correct json body in create_table (#2923)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

correct json body in create_table

### Why are the changes needed?

HTTP request body is illegal, miss a dot in body

use this command may get an exception message

### Does this PR introduce _any_ user-facing change?

N/A

### How was this patch tested?

Mannal
  • Loading branch information
zhoukangcn authored Apr 14, 2024
1 parent 1ba77e6 commit 3bccc65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/manage-relational-metadata-using-gravitino.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ curl -X POST -H "Accept: application/vnd.gravitino.v1+json" \
},
{
"name": "name",
"type": "varchar(500)"
"type": "varchar(500)",
"comment": "name column comment",
"nullable": true,
"autoIncrement": false,
Expand Down

0 comments on commit 3bccc65

Please sign in to comment.