Skip to content

Commit

Permalink
Added some comments to the .proto file explaining the different path …
Browse files Browse the repository at this point in the history
…types in a LocalFiles message (#133)

* Added some comments to the .proto file explaining the different path types in a LocalFiles message
  • Loading branch information
westonpace committed Mar 27, 2022
1 parent 1a954be commit 67875fb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions proto/substrait/algebra.proto
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,16 @@ message ReadRel {
// the midpoint of the chunk)
message FileOrFiles {
oneof path_type {
// A URI that can refer to either a single folder or a single file
string uri_path = 1;
// A URI where the path portion is a glob expression that can
// identify zero or more paths.
// Consumers should support the POSIX syntax. The recursive
// globstar (**) may not be supported.
string uri_path_glob = 2;
// A URI that refers to a single file
string uri_file = 3;
// A URI that refers to a single folder
string uri_folder = 4;
}

Expand Down

0 comments on commit 67875fb

Please sign in to comment.