File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
packages/transform/src/transformers Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -1034,23 +1034,32 @@ export class V13ToV14Transformer {
10341034 }
10351035
10361036 String ( node : PG13 . String , context : TransformerContext ) : any {
1037- return node ;
1037+ const result : any = { ...node } ;
1038+ return { String : result } ;
10381039 }
10391040
10401041 BitString ( node : PG13 . BitString , context : TransformerContext ) : any {
1041- return node ;
1042+ const result : any = { ...node } ;
1043+
1044+ return { BitString : result } ;
10421045 }
10431046
10441047 Float ( node : PG13 . Float , context : TransformerContext ) : any {
1045- return node ;
1048+ const result : any = { ...node } ;
1049+
1050+ return { Float : result } ;
10461051 }
10471052
10481053 Integer ( node : PG13 . Integer , context : TransformerContext ) : any {
1049- return node ;
1054+ const result : any = { ...node } ;
1055+
1056+ return { Integer : result } ;
10501057 }
10511058
10521059 Null ( node : PG13 . Null , context : TransformerContext ) : any {
1053- return node ;
1060+ const result : any = { ...node } ;
1061+
1062+ return { Null : result } ;
10541063 }
10551064
10561065 List ( node : any , context : TransformerContext ) : any {
You can’t perform that action at this time.
0 commit comments