Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 805 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 805 Bytes

parquet-go-source

To be kept until xitongsys#70 is merged.

parquet-go-source is a source provider for parquet-go. Your source must implement ParquetFile interface:

type ParquetFile interface {
	io.Seeker
	io.Reader
	io.Writer
	io.Closer
	Open(name string) (ParquetFile, error)
	Create(name string) (ParquetFile, error)
}

Now it supports:

Thanks for all the contributors !