-
Notifications
You must be signed in to change notification settings - Fork 6k
Open
Labels
Description
Bug Report
Please answer these questions before submitting your issue. Thanks!
According to mysql's doc, max_execution_time only works for select sql, in TiDB, it try to align this behavior, however, there is still some corner cases which max_execution_time affect non select sql, for example, in #56923, it tries to set context's timeout using max_execution_time, so rpc can be aware of max_execution_time, but it actually does not check InSelectStmt, which means a non select sql will be affected by this pr.