timeout attribute of cfquery ignored?
I set up the following SELECT * test on a table with a huge number of rows, just to make sure the query would run over 1 second:
<cfquery name="test" datasource="#ds#" timeout="1">
SELECT *
FROM request_stats
</cfquery>
The debugging info indicates that the query took 2539ms, but instead of throwing an error the query ran & returned results. Maybe I am not understanding how the timeout attribute should work? The CF docs indicate that "Because the timeout attribute only affects the maximum time for each suboperation of a query, the cumulative time may exceed its value" -- but does a simple query like this one have suboperations?
I'm using CF9.
