Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
N/A
Description
It says:
Individual queries can also be limited by adding a MAX_STATEMENT_TIME clause to the query. For example:
SELECT MAX_STATEMENT_TIME=2 * FROM t1;
It's not the right syntax, apparently it's supposed to be
SET STATEMENT MAX_STATEMENT_TIME=2 FOR SELECT * FROM t1