File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2199,7 +2199,7 @@ export class Deparser implements DeparserVisitor {
21992199 if ( size != null ) {
22002200 return 'char' ;
22012201 }
2202- return 'pg_catalog. bpchar' ;
2202+ return 'bpchar' ;
22032203 case 'varchar' :
22042204 return 'varchar' ;
22052205 case 'numeric' :
@@ -2213,7 +2213,7 @@ export class Deparser implements DeparserVisitor {
22132213 case 'int8' :
22142214 return 'bigint' ;
22152215 case 'real' :
2216- return 'pg_catalog. float4' ;
2216+ return 'float4' ;
22172217 case 'time' :
22182218 return 'time' ;
22192219 case 'timestamp' :
@@ -2223,7 +2223,7 @@ export class Deparser implements DeparserVisitor {
22232223 case 'bit' :
22242224 return 'bit' ;
22252225 default :
2226- return `pg_catalog. ${ typeName } ` ;
2226+ return typeName ;
22272227 }
22282228 }
22292229
You can’t perform that action at this time.
0 commit comments