mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
[CSV] add PIPE value for SEPARATOR creation option
available only since GDAL/OGR 3.12
This commit is contained in:
parent
506760c2e3
commit
fdc842b3ef
@ -1195,8 +1195,11 @@ class QgsVectorFileWriterMetadataContainer
|
||||
<< QStringLiteral( "COMMA" )
|
||||
<< QStringLiteral( "SEMICOLON" )
|
||||
<< QStringLiteral( "TAB" )
|
||||
<< QStringLiteral( "SPACE" ),
|
||||
QStringLiteral( "COMMA" ) // Default value
|
||||
<< QStringLiteral( "SPACE" )
|
||||
#if GDAL_VERSION_NUM >= GDAL_COMPUTE_VERSION(3,12,0)
|
||||
<< QStringLiteral( "PIPE" )
|
||||
#endif
|
||||
, QStringLiteral( "COMMA" ) // Default value
|
||||
) );
|
||||
|
||||
layerOptions.insert( QStringLiteral( "STRING_QUOTING" ), new QgsVectorFileWriter::SetOption(
|
||||
|
Loading…
x
Reference in New Issue
Block a user