This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new b41ef20c5d Minor: Add comments for removed protobuf nodes (#10252)
b41ef20c5d is described below

commit b41ef20c5dad7bdd674e3cc5f35a9c99efae676c
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Apr 28 11:08:49 2024 -0400

    Minor: Add comments for removed protobuf nodes (#10252)
    
    * Minor: Add comments for removed protobuf nodes
    
    * Apply suggestions from code review
    
    Co-authored-by: Alex Huang <[email protected]>
    
    * regenerate proto and move location
    
    ---------
    
    Co-authored-by: Alex Huang <[email protected]>
---
 datafusion/proto/proto/datafusion.proto | 4 +++-
 datafusion/proto/src/generated/prost.rs | 3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/datafusion/proto/proto/datafusion.proto 
b/datafusion/proto/proto/datafusion.proto
index 5bffdc3af7..c2653fa96f 100644
--- a/datafusion/proto/proto/datafusion.proto
+++ b/datafusion/proto/proto/datafusion.proto
@@ -389,6 +389,7 @@ message LogicalExprNode {
     NegativeNode negative = 13;
     InListNode in_list = 14;
     Wildcard wildcard = 15;
+    // was  ScalarFunctionNode scalar_function = 16;
     TryCastNode try_cast = 17;
 
     // window expressions
@@ -1310,12 +1311,13 @@ message PhysicalExprNode {
     PhysicalSortExprNode sort = 10;
     PhysicalNegativeNode negative = 11;
     PhysicalInListNode in_list = 12;
+    //  was PhysicalScalarFunctionNode scalar_function = 13;
     PhysicalTryCastNode try_cast = 14;
-
     // window expressions
     PhysicalWindowExprNode window_expr = 15;
 
     PhysicalScalarUdfNode scalar_udf = 16;
+    // was PhysicalDateTimeIntervalExprNode date_time_interval_expr = 17;
 
     PhysicalLikeExprNode like_expr = 18;
   }
diff --git a/datafusion/proto/src/generated/prost.rs 
b/datafusion/proto/src/generated/prost.rs
index d0210eb7cf..a7aa73d1b6 100644
--- a/datafusion/proto/src/generated/prost.rs
+++ b/datafusion/proto/src/generated/prost.rs
@@ -616,6 +616,7 @@ pub mod logical_expr_node {
         InList(::prost::alloc::boxed::Box<super::InListNode>),
         #[prost(message, tag = "15")]
         Wildcard(super::Wildcard),
+        /// was  ScalarFunctionNode scalar_function = 16;
         #[prost(message, tag = "17")]
         TryCast(::prost::alloc::boxed::Box<super::TryCastNode>),
         /// window expressions
@@ -2087,11 +2088,13 @@ pub mod physical_expr_node {
         Negative(::prost::alloc::boxed::Box<super::PhysicalNegativeNode>),
         #[prost(message, tag = "12")]
         InList(::prost::alloc::boxed::Box<super::PhysicalInListNode>),
+        ///   was PhysicalScalarFunctionNode scalar_function = 13;
         #[prost(message, tag = "14")]
         TryCast(::prost::alloc::boxed::Box<super::PhysicalTryCastNode>),
         /// window expressions
         #[prost(message, tag = "15")]
         WindowExpr(super::PhysicalWindowExprNode),
+        /// was PhysicalDateTimeIntervalExprNode date_time_interval_expr = 17;
         #[prost(message, tag = "16")]
         ScalarUdf(super::PhysicalScalarUdfNode),
         #[prost(message, tag = "18")]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to