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

source provider for parquet-go

License

Notifications You must be signed in to change notification settings

processout/parquet-go-source

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 !

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%