codename-hub / php-parquet

PHP implementation for reading and writing Apache Parquet files/streams
Other
58 stars 8 forks source link

can't append rows in a existed parquet file #18

Closed billjazz closed 1 year ago

billjazz commented 1 year ago

public function __construct($handle, Schema $schema, ?ParquetOptions $options = null) { $append = false; // TODO: detect already written data and change to true (append mode) $this->schema = $schema; $this->writerInstance = new ParquetWriter($schema, $handle, $options, $append); }

expecting the append

Katalystical commented 1 year ago

Could you please elaborate?