Skip to content

Commit bd1dc9a

Browse files
authored
Merge pull request OSGeo#11565 from rouault/parquet_page_index
Parquet writer: write page index
2 parents c3b4b65 + 593ad59 commit bd1dc9a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ogr/ogrsf_frmts/parquet/ogrparquetwriterlayer.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,12 @@ bool OGRParquetWriterLayer::SetOptions(CSLConstList papszOptions,
467467
if (!CPLTestBool(CSLFetchNameValueDef(papszOptions, "STATISTICS", "YES")))
468468
m_oWriterPropertiesBuilder.disable_statistics();
469469

470+
#if PARQUET_VERSION_MAJOR >= 12
471+
// Undocumented option. Not clear it is useful to disable it.
472+
if (CPLTestBool(CSLFetchNameValueDef(papszOptions, "PAGE_INDEX", "YES")))
473+
m_oWriterPropertiesBuilder.enable_write_page_index();
474+
#endif
475+
470476
if (m_eGeomEncoding == OGRArrowGeomEncoding::WKB && eGType != wkbNone)
471477
{
472478
m_oWriterPropertiesBuilder.disable_statistics(

0 commit comments

Comments
 (0)