Skip to content

Commit

Permalink
Fixed Schema Parser not accepting 'CREATE SEQUENCE public.a'
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Jan 10, 2022
1 parent 2bad72a commit cd66c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IHP/IDE/SchemaDesigner/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ dropPolicy = do
createSequence = do
lexeme "CREATE"
lexeme "SEQUENCE"
name <- identifier
name <- qualifiedIdentifier
char ';'
pure CreateSequence { name }

Expand Down

0 comments on commit cd66c21

Please sign in to comment.