Skip to content

Commit

Permalink
Fix CREATE SEQUENCE doc (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust authored Aug 31, 2023
1 parent f6d10bf commit 2117271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ast/ast.go
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ type CreateTable struct {

// CreateSequence is CREATE SEQUENCE statement node.
//
// CREATE SEQUENCE IF NOT EXISTS {{.Name | sql}} }} OPTIONS ({{.Options | sqlJoin ","}})
// CREATE SEQUENCE {{if .IfNotExists}}IF NOT EXISTS{{end}} {{.Name | sql}} }} OPTIONS ({{.Options | sqlJoin ","}})
type CreateSequence struct {
// pos = Create
// end = Rparen + 1
Expand Down

0 comments on commit 2117271

Please sign in to comment.