delta-incubator / delta-sharing-rs

A Minimalistic Rust Implementation of Delta Sharing Server.
MIT License
77 stars 8 forks source link

ShareStore extension #37

Open tdikland opened 5 months ago

tdikland commented 5 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