We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
quoted_fields_guessing param is set to true by default but it is being set to false when passed to ogr2ogr2:
quoted_fields_guessing
true
false
ogr2ogr2
http://docs.cartodb.com/cartodb-platform/import-api.html http://www.gdal.org/drv_csv.html
From a log:
data: { //... type_guessing: true, quoted_fields_guessing: true, content_guessing: true, //... }
and then:
ogr2ogr call: OSM_USE_CUSTOM_INDEXING=NO PG_USE_COPY=YES PGCLIENTENCODING=ISO-8859-2 /usr/bin/ogr2ogr2 -f PostgreSQL -oo AUTODETECT_TYPE=YES -oo QUOTED_FIELDS_AS_STRING=NO PG:"..."
note the QUOTED_FIELDS_AS_STRING=NO
QUOTED_FIELDS_AS_STRING=NO
The text was updated successfully, but these errors were encountered:
Fix mapping of bool to string #1966
be24a0f
This will make ogr2ogr2 honor `quoted_fields_guessing` which was wrongly mapped to `QUOTED_FIELDS_AS_STRING` when passed.
Merge pull request #1968 from CartoDB/import-honor-quoted-fields-gues…
db50c6b
…sing Fix mapping of bool to string #1966
and deployed
Sorry, something went wrong.
No branches or pull requests
quoted_fields_guessing
param is set totrue
by default but it is being set tofalse
when passed toogr2ogr2
:http://docs.cartodb.com/cartodb-platform/import-api.html
http://www.gdal.org/drv_csv.html
From a log:
and then:
note the
QUOTED_FIELDS_AS_STRING=NO
The text was updated successfully, but these errors were encountered: