From 0ad927eeea79980636f7afcb5168ca3f768a6de8 Mon Sep 17 00:00:00 2001 From: David Sisson Date: Tue, 24 Sep 2024 21:17:07 -0700 Subject: [PATCH] rename --- proto/substrait/algebra.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/substrait/algebra.proto b/proto/substrait/algebra.proto index d066c940b..478b71ba2 100644 --- a/proto/substrait/algebra.proto +++ b/proto/substrait/algebra.proto @@ -76,7 +76,7 @@ message RelCommon { message SavedComputation { // The value corresponds to a plan unique number for that datastructure. Any particular // computation may be saved only once but it may be loaded multiple times. - int32 anchor = 1; + int32 computation_id = 1; // The type of this computation. While a plan may use COMPUTATION_TYPE_UNKNOWN for all // of its types it is recommended to use a more specific type so that the optimization // is more portable. The consumer should be able to decide if an unknown type here @@ -94,7 +94,7 @@ message RelCommon { message LoadedComputation { // The value corresponds to a plan unique number for that datastructure. Any particular // computation may be saved only once but it may be loaded multiple times. - int32 anchor_reference = 1; + int32 computation_id_reference = 1; // The type of this computation. While a plan may use COMPUTATION_TYPE_UNKNOWN for all // of its types it is recommended to use a more specific type so that the optimization // is more portable. The consumer should be able to decide if an unknown type here