Skip to content

Commit

Permalink
fix pb message style
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Nov 15, 2024
1 parent 98daf1b commit db7200c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion proto/catalog.proto
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ message Function {
bool always_retry_on_network_error = 16;
// The runtime selected when multiple runtimes are available for the language. Now is not used.
optional string runtime = 18;
reserved 19; reserved "function_type";
reserved 19;
reserved "function_type";

oneof kind {
ScalarFunction scalar = 11;
Expand Down
6 changes: 4 additions & 2 deletions proto/expr.proto
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,8 @@ message UserDefinedFunction {
bool always_retry_on_network_error = 9;
// The runtime selected when multiple runtimes are available for the language. Now is not used.
optional string runtime = 11;
reserved 12; reserved "function_type";
reserved 12;
reserved "function_type";
}

// Additional information for user defined table/aggregate functions.
Expand All @@ -626,5 +627,6 @@ message UserDefinedFunctionMetadata {
optional string body = 7;
optional bytes compressed_binary = 10;
optional string runtime = 11;
reserved 12; reserved "function_type";
reserved 12;
reserved "function_type";
}

0 comments on commit db7200c

Please sign in to comment.