delta-incubator / delta-sharing-rs

A Minimalistic Rust Implementation of Delta Sharing Server.
MIT License
82 stars 10 forks source link

ShareStore extension #37

Open tdikland opened 10 months ago

tdikland commented 10 months ago

The ShareStore trait is used to list shares/schemas/tables and get the table storage location.

In this PR we introduce two implementations of this trait. One based on a Postgres database, one based on a YAML file.

Closes #31