fix compile of occi plugin by casting from int to mapnik::value_integer (appears occi does not support 64 bit ints)
This commit is contained in:
parent
da0c99b4be
commit
fa1acc5de7
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ feature_ptr occi_featureset::next()
|
|||
case oracle::occi::OCCIINT:
|
||||
case oracle::occi::OCCIUNSIGNED_INT:
|
||||
case oracle::occi::OCCIROWID:
|
||||
feature->put(fld_name,rs_->getInt (i + 1));
|
||||
feature->put(fld_name,static_cast<mapnik::value_integer>(rs_->getInt (i + 1)));
|
||||
break;
|
||||
case oracle::occi::OCCIFLOAT:
|
||||
case oracle::occi::OCCIBFLOAT:
|
||||
|
|
Loading…
Reference in a new issue