Skip to content

Commit

Permalink
Support Sequences (#10203)
Browse files Browse the repository at this point in the history
close #4559
  • Loading branch information
dveeden authored Apr 30, 2024
1 parent 36e9e1b commit 2a7a65c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dm/pkg/parser/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ func SplitDDL(stmt ast.StmtNode, schema string) (sqls []string, err error) {
)

switch v := stmt.(type) {
case *ast.CreateSequenceStmt:
case *ast.AlterSequenceStmt:
case *ast.DropSequenceStmt:
case *ast.AlterDatabaseStmt:
case *ast.CreateDatabaseStmt:
v.IfNotExists = true
Expand Down

0 comments on commit 2a7a65c

Please sign in to comment.