From 118eef7e9d33c744864d2c25dd8650d56a1e5614 Mon Sep 17 00:00:00 2001 From: Michael Xu Date: Fri, 5 Jan 2024 07:04:05 -0500 Subject: [PATCH] update comments --- src/frontend/src/binder/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/binder/mod.rs b/src/frontend/src/binder/mod.rs index 73198d78a66cd..e81324254da67 100644 --- a/src/frontend/src/binder/mod.rs +++ b/src/frontend/src/binder/mod.rs @@ -116,11 +116,12 @@ pub struct Binder { param_types: ParameterTypes, - /// The mapping from sql udf parameters to ast expressions + /// The mapping from `sql udf parameters`` to `ast expressions` /// Note: The expressions are constructed during runtime, correspond to the actual users' input udf_context: HashMap, /// The mapping from `function name` to `calling times` + /// Record the calling times for every sql udf during the binding phase udf_recursive_context: HashMap, }