@@ -24,7 +24,6 @@ GitLogFunctionData::GitLogFunctionData(const string &ref) : repo_path(""), resol
2424
2525unique_ptr<FunctionData> GitLogBind (ClientContext &context, TableFunctionBindInput &input,
2626 vector<LogicalType> &return_types, vector<string> &names) {
27-
2827 // Use unified parameter parsing to support both git:// URIs and filesystem paths
2928 auto params = ParseUnifiedGitParams (input, 1 ); // ref parameter at index 1 (optional)
3029
@@ -351,7 +350,6 @@ static OperatorResultType GitLogEachFunction(ExecutionContext &context, TableFun
351350 // Output rows for current input
352351 idx_t output_count = 0 ;
353352 while (output_count < STANDARD_VECTOR_SIZE && state.current_output_row < state.current_rows .size ()) {
354-
355353 auto &row = state.current_rows [state.current_output_row ];
356354
357355 // Fill output row with git log data
@@ -386,7 +384,6 @@ static OperatorResultType GitLogEachFunction(ExecutionContext &context, TableFun
386384// GitLogEachBind function - LATERAL function bind for dynamic repo_path processing
387385unique_ptr<FunctionData> GitLogEachBind (ClientContext &context, TableFunctionBindInput &input,
388386 vector<LogicalType> &return_types, vector<string> &names) {
389-
390387 // For LATERAL functions, use ParseLateralGitParams to get optional ref parameter
391388 // The repo_path will come from runtime DataChunk, not bind time
392389 auto params = ParseLateralGitParams (input, 1 ); // ref parameter at index 1 (optional)
0 commit comments