File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/transform/src/transformers Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1354,7 +1354,8 @@ export class V13ToV14Transformer {
13541354 nodeType === 'CreateOpFamilyStmt' ||
13551355 nodeType === 'CreateOperatorStmt' ||
13561356 nodeType === 'GrantStmt' ||
1357- nodeType === 'RevokeStmt' ) {
1357+ nodeType === 'RevokeStmt' ||
1358+ nodeType === 'RenameStmt' ) {
13581359 return true ;
13591360 }
13601361 if ( nodeType === 'DropStmt' ) {
@@ -1377,7 +1378,8 @@ export class V13ToV14Transformer {
13771378 parentType === 'CreateOperatorStmt' ||
13781379 parentType === 'CreateCastStmt' ||
13791380 parentType === 'GrantStmt' ||
1380- parentType === 'RevokeStmt' ) {
1381+ parentType === 'RevokeStmt' ||
1382+ parentType === 'RenameStmt' ) {
13811383 return true ;
13821384 }
13831385 if ( parentType === 'DropStmt' ) {
You can’t perform that action at this time.
0 commit comments