Skip to content

Commit

Permalink
Merge pull request #1208 from dronord/ora_bigint
Browse files Browse the repository at this point in the history
db_ora: dont trim VAL_BIGINT
  • Loading branch information
bogdan-iancu committed May 28, 2019
2 parents f7e45ba + abfd5aa commit 3ddbbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/db_oracle/res.c
Expand Up @@ -297,7 +297,7 @@ static int convert_row(db_res_t* _res, db_row_t* _r, dmap_t* _d)
break;

case DB_BIGINT:
VAL_BIGINT(v) = *_d->pv[i].i;
VAL_BIGINT(v) = *((long long*)_d->pv[i].i);
break;

case DB_BITMAP:
Expand Down

0 comments on commit 3ddbbf6

Please sign in to comment.