Skip to content

Commit

Permalink
Update src/frontend/src/binder/expr/function/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: xiangjinwu <[email protected]>
  • Loading branch information
kwannoel and xiangjinwu authored Oct 10, 2024
1 parent 66464d9 commit 4674982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/binder/expr/function/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl Binder {
"`VARIADIC` is not allowed in table function call"
);
self.ensure_table_function_allowed()?;
return Ok(TableFunction::new_postgres_query(args)?.into());
return Ok(TableFunction::new_postgres_query(args).context("postgres_query error")?.into());
}
// UDTF
if let Some(ref udf) = udf
Expand Down

0 comments on commit 4674982

Please sign in to comment.