Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oguimbal committed Apr 28, 2021
1 parent 8aac827 commit 32a9dc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/to-sql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -859,10 +859,10 @@ const visitor = astVisitor<IAstFullVisitor>(m => ({
if (t.identity) {
switch (t.identity) {
case 'restart':
ret.push('RESTART IDENTITY');
ret.push(' RESTART IDENTITY ');
break;
case 'continue':
ret.push('CONTINUE IDENTITY');
ret.push(' CONTINUE IDENTITY ');
break;
}
}
Expand Down

0 comments on commit 32a9dc7

Please sign in to comment.