We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aac827 commit 32a9dc7Copy full SHA for 32a9dc7
1 file changed
src/to-sql.ts
@@ -859,10 +859,10 @@ const visitor = astVisitor<IAstFullVisitor>(m => ({
859
if (t.identity) {
860
switch (t.identity) {
861
case 'restart':
862
- ret.push('RESTART IDENTITY');
+ ret.push(' RESTART IDENTITY ');
863
break;
864
case 'continue':
865
- ret.push('CONTINUE IDENTITY');
+ ret.push(' CONTINUE IDENTITY ');
866
867
}
868
0 commit comments