File tree Expand file tree Collapse file tree 1 file changed +5
-14
lines changed
packages/transform/src/transformers Expand file tree Collapse file tree 1 file changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -1034,32 +1034,23 @@ export class V13ToV14Transformer {
10341034 }
10351035
10361036 String ( node : PG13 . String , context : TransformerContext ) : any {
1037- const result : any = { ...node } ;
1038- return { String : result } ;
1037+ return node ;
10391038 }
10401039
10411040 BitString ( node : PG13 . BitString , context : TransformerContext ) : any {
1042- const result : any = { ...node } ;
1043-
1044- return { BitString : result } ;
1041+ return node ;
10451042 }
10461043
10471044 Float ( node : PG13 . Float , context : TransformerContext ) : any {
1048- const result : any = { ...node } ;
1049-
1050- return { Float : result } ;
1045+ return node ;
10511046 }
10521047
10531048 Integer ( node : PG13 . Integer , context : TransformerContext ) : any {
1054- const result : any = { ...node } ;
1055-
1056- return { Integer : result } ;
1049+ return node ;
10571050 }
10581051
10591052 Null ( node : PG13 . Null , context : TransformerContext ) : any {
1060- const result : any = { ...node } ;
1061-
1062- return { Null : result } ;
1053+ return node ;
10631054 }
10641055
10651056 List ( node : any , context : TransformerContext ) : any {
You can’t perform that action at this time.
0 commit comments