Skip to content

Commit

Permalink
fix: rename version fields which conflict with sysmacros (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkietz authored Nov 1, 2022
1 parent 20a2f14 commit 4170bf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proto/substrait/plan.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ message PlanVersion {

message Version {
// Substrait version number.
uint32 major = 1;
uint32 minor = 2;
uint32 patch = 3;
uint32 major_number = 1;
uint32 minor_number = 2;
uint32 patch_number = 3;

// If a particular version of Substrait is used that does not correspond to
// a version number exactly (for example when using an unofficial fork or
Expand Down

0 comments on commit 4170bf1

Please sign in to comment.