Skip to content

Commit b721dd0

Browse files
authored
chore: to avoid UT stackoverflow, disable async_backtrace of TypeChecker::resolve (#15133)
to avoid ut stackoverflow, disable async_backtrace of `TypeChecker::resolve`
1 parent e5efdb7 commit b721dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/sql/src/planner/semantic/type_check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl<'a> TypeChecker<'a> {
215215
}
216216

217217
#[async_recursion::async_recursion]
218-
#[async_backtrace::framed]
218+
//#[async_backtrace::framed]
219219
pub async fn resolve(&mut self, expr: &Expr) -> Result<Box<(ScalarExpr, DataType)>> {
220220
if let Some(scalar) = self.bind_context.srfs.get(&expr.to_string()) {
221221
if !matches!(self.bind_context.expr_context, ExprContext::SelectClause) {

0 commit comments

Comments
 (0)