From 11fc7682dd1564e0d578287b8400c44853129317 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Fri, 11 Nov 2016 16:43:02 +0100 Subject: [PATCH] Maxrows filter documentation update Maxrows filter documentation update --- Documentation/Filters/Maxrows.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Documentation/Filters/Maxrows.md b/Documentation/Filters/Maxrows.md index 376e9fec9..47edb688f 100644 --- a/Documentation/Filters/Maxrows.md +++ b/Documentation/Filters/Maxrows.md @@ -1,10 +1,12 @@ # Maxrows ## Overview -The maxrows filter is capable of restricting the amount of rows that a SELECT, a prepared statement or stored procedure -could return to the client application. -If a resultset from a backend server has more rows than the configured limit or the resultset size exceeds the configured size, -an empty result will be sent to the client. +The maxrows filter is capable of restricting the amount of rows that a SELECT, + a prepared statement or stored procedure could return to the client application. + +If a resultset from a backend server has more rows than the configured limit +or the resultset size exceeds the configured size, + an empty result will be sent to the client. ## Configuration @@ -28,8 +30,10 @@ Optional parameters are: #### `max_resultset_rows` -Specifies the maximum number of rows a resultset can have in order to be -returned to the usere. If a resultset is larger than this an empty result will be sent instead. +Specifies the maximum number of rows a resultset can have in order to be returned + to the user. + +If a resultset is larger than this an empty result will be sent instead. ``` max_resultset_rows=1000 @@ -57,7 +61,7 @@ denoting different logging. * ` 0` (`0b00000`) No logging is made. * ` 1` (`0b00001`) A decision to handle data form server is logged. - * ` 2` (`0b00010`) Reached max_resultset_rows or max_resultset_size limit is logged. + * ` 2` (`0b00010`) Reached max_resultset_rows or max_resultset_size is logged. Default is `0`. To log everything, give `debug` a value of `3`.