Skip to content

Commit

Permalink
add int64list
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Dec 13, 2023
1 parent 9c3390e commit 8b19fd6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ogr_fdw_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ ogrTypeToPgType(OGRFieldDefnH ogr_fld, char *pgtype, size_t width)
case OFTInteger64:
snprintf(pgtype, width, "bigint");
break;
case OFTInteger64List:
snprintf(pgtype, width, "bigint[]");
break;
#endif
default:
CPLError(CE_Failure, CPLE_AssertionFailed,
Expand Down

0 comments on commit 8b19fd6

Please sign in to comment.