Skip to content

Commit 4fae44d

Browse files
authored
Fix a comment about oids (#184)
1 parent 5eab498 commit 4fae44d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion-postgres/export_pg_catalog_arrow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def pg_type_to_arrow_type(pg_type, is_nullable=True):
173173
'character varying': pa.string(),
174174
'character': pa.string(),
175175
'name': pa.string(),
176-
'oid': pa.int32(), # OIDs are unsigned
176+
'oid': pa.int32(), # OIDs are signed
177177
'regproc': pa.string(),
178178
'regtype': pa.string(),
179179
'regclass': pa.string(),

0 commit comments

Comments
 (0)