Merge pull request #404 from CartoDB/avoid-gpkg-fid-column
Avoid gpkg fid column
This commit is contained in:
commit
efd818838e
@ -162,7 +162,7 @@ OgrFormat.prototype.toOGR = function(options, out_format, out_filename, callback
|
||||
}
|
||||
|
||||
if (options.cmd_params){
|
||||
ogrargs.concat(options.cmd_params);
|
||||
ogrargs = ogrargs.concat(options.cmd_params);
|
||||
}
|
||||
|
||||
ogrargs.push('-nln', out_layername);
|
||||
|
@ -16,6 +16,7 @@ GeoPackageFormat.prototype._fileExtension = "gpkg";
|
||||
GeoPackageFormat.prototype._needSRS = true;
|
||||
|
||||
GeoPackageFormat.prototype.generate = function(options, callback) {
|
||||
options.cmd_params = ['-lco', 'FID=cartodb_id'];
|
||||
this.toOGR_SingleFile(options, 'GPKG', callback);
|
||||
};
|
||||
|
||||
|
@ -68,6 +68,7 @@ describe('geopackage query', function(){
|
||||
assert.equal(err, null);
|
||||
assert.equal(row.cartodb_id, 1);
|
||||
assert.equal(row.name, 'Hawai');
|
||||
assert.equal(row.fid, undefined);
|
||||
done();
|
||||
});
|
||||
assert.notEqual(dqr, undefined);
|
||||
|
Loading…
Reference in New Issue
Block a user