Skip to content

Commit

Permalink
Process type BPCHAR the same way that text is processed.
Browse files Browse the repository at this point in the history
Fixes: #130.
  • Loading branch information
Vijay Nayar authored and SingingBush committed Dec 6, 2024
1 parent 74a1da9 commit e0f84f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/ddbc/drivers/pgsqlddbc.d
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,7 @@ version(USE_PGSQL) {
v[col] = parse!double(s);
break;
case VARCHAROID:
case BPCHAROID:
case TEXTOID:
case NAMEOID:
v[col] = s;
Expand Down

0 comments on commit e0f84f4

Please sign in to comment.