@@ -3319,83 +3319,103 @@ export class V15ToV16Transformer {
33193319
33203320
33213321 CreateAggregateStmt ( node : PG15 . DefineStmt , context : TransformerContext ) : any {
3322- return node ;
3322+ const result : any = { ...node } ;
3323+ return { CreateAggregateStmt : result } ;
33233324 }
33243325
33253326 CreateTableAsStmt ( node : PG15 . CreateTableAsStmt , context : TransformerContext ) : any {
3326- return node ;
3327+ const result : any = { ...node } ;
3328+ return { CreateTableAsStmt : result } ;
33273329 }
33283330
33293331 RefreshMatViewStmt ( node : PG15 . RefreshMatViewStmt , context : TransformerContext ) : any {
3330- return node ;
3332+ const result : any = { ...node } ;
3333+ return { RefreshMatViewStmt : result } ;
33313334 }
33323335
33333336 AccessPriv ( node : PG15 . AccessPriv , context : TransformerContext ) : any {
3334- return node ;
3337+ const result : any = { ...node } ;
3338+ return { AccessPriv : result } ;
33353339 }
33363340
33373341 AlterDatabaseStmt ( node : PG15 . AlterDatabaseStmt , context : TransformerContext ) : any {
3338- return node ;
3342+ const result : any = { ...node } ;
3343+ return { AlterDatabaseStmt : result } ;
33393344 }
33403345
33413346 AlterDatabaseRefreshCollStmt ( node : PG15 . AlterDatabaseRefreshCollStmt , context : TransformerContext ) : any {
3342- return node ;
3347+ const result : any = { ...node } ;
3348+ return { AlterDatabaseRefreshCollStmt : result } ;
33433349 }
33443350
33453351 AlterDatabaseSetStmt ( node : PG15 . AlterDatabaseSetStmt , context : TransformerContext ) : any {
3346- return node ;
3352+ const result : any = { ...node } ;
3353+ return { AlterDatabaseSetStmt : result } ;
33473354 }
33483355
33493356 DeclareCursorStmt ( node : PG15 . DeclareCursorStmt , context : TransformerContext ) : any {
3350- return node ;
3357+ const result : any = { ...node } ;
3358+ return { DeclareCursorStmt : result } ;
33513359 }
33523360
33533361 PublicationObjSpec ( node : PG15 . PublicationObjSpec , context : TransformerContext ) : any {
3354- return node ;
3362+ const result : any = { ...node } ;
3363+ return { PublicationObjSpec : result } ;
33553364 }
33563365
33573366 PublicationTable ( node : PG15 . PublicationTable , context : TransformerContext ) : any {
3358- return node ;
3367+ const result : any = { ...node } ;
3368+ return { PublicationTable : result } ;
33593369 }
33603370
33613371 CreateAmStmt ( node : PG15 . CreateAmStmt , context : TransformerContext ) : any {
3362- return node ;
3372+ const result : any = { ...node } ;
3373+ return { CreateAmStmt : result } ;
33633374 }
33643375
33653376 IntoClause ( node : PG15 . IntoClause , context : TransformerContext ) : any {
3366- return node ;
3377+ const result : any = { ...node } ;
3378+ return { IntoClause : result } ;
33673379 }
33683380
33693381 OnConflictExpr ( node : PG15 . OnConflictExpr , context : TransformerContext ) : any {
3370- return node ;
3382+ const result : any = { ...node } ;
3383+ return { OnConflictExpr : result } ;
33713384 }
33723385
33733386 ScanToken ( node : PG15 . ScanToken , context : TransformerContext ) : any {
3374- return node ;
3387+ const result : any = { ...node } ;
3388+ return { ScanToken : result } ;
33753389 }
33763390
33773391 CreateOpClassItem ( node : PG15 . CreateOpClassItem , context : TransformerContext ) : any {
3378- return node ;
3392+ const result : any = { ...node } ;
3393+ return { CreateOpClassItem : result } ;
33793394 }
33803395
33813396 Var ( node : PG15 . Var , context : TransformerContext ) : any {
3382- return node ;
3397+ const result : any = { ...node } ;
3398+ return { Var : result } ;
33833399 }
33843400
33853401 TableFunc ( node : PG15 . TableFunc , context : TransformerContext ) : any {
3386- return node ;
3402+ const result : any = { ...node } ;
3403+ return { TableFunc : result } ;
33873404 }
33883405
33893406 RangeTableFunc ( node : PG15 . RangeTableFunc , context : TransformerContext ) : any {
3390- return node ;
3407+ const result : any = { ...node } ;
3408+ return { RangeTableFunc : result } ;
33913409 }
33923410
33933411 RangeTableFuncCol ( node : PG15 . RangeTableFuncCol , context : TransformerContext ) : any {
3394- return node ;
3412+ const result : any = { ...node } ;
3413+ return { RangeTableFuncCol : result } ;
33953414 }
33963415
33973416 RangeFunction ( node : PG15 . RangeFunction , context : TransformerContext ) : any {
3398- return node ;
3417+ const result : any = { ...node } ;
3418+ return { RangeFunction : result } ;
33993419 }
34003420
34013421
0 commit comments