documented $cfg['MaxExactCount']
This commit is contained in:
@@ -10,6 +10,7 @@ $Source$
|
||||
SELECT COUNT(*) only for small (<20000 rows) tables (RFE #708533).
|
||||
* config.inc.php3, db_details_structure.php3, libraries/common.lib.php3:
|
||||
$cfg['MaxExactCount'] is now used instead of hardcoded 20000 for above.
|
||||
* Documentation.*: Documented above.
|
||||
* lang/albanian: Updated, thanks to Laurent Dhima (laurenti).
|
||||
* lang/galician: Added missing string.
|
||||
* lang/thai: Updated, thanks to Arthit Suriyawongkul.
|
||||
|
@@ -1534,6 +1534,15 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
||||
<br /><br />
|
||||
</dd>
|
||||
|
||||
<dt><b>$cfg['MaxExactCount'] </b>integer</dt>
|
||||
<dd>
|
||||
Determines for how large tables phpMyAdmin should get exact row count by
|
||||
<code>SELECT COUNT</code>. If approximate row cound is smaller than this
|
||||
value, <code>SELECT COUNT</code> will be used, otherwise only value
|
||||
returned by <code>SHOW TABLE STATUS</code>.
|
||||
<br /><br />
|
||||
</dd>
|
||||
|
||||
<dt><b>$cfg['SQP']['fmtType']</b> string [<tt>html</tt>|<tt>none</tt>]</dt>
|
||||
<dd>
|
||||
The main use of the new SQL Parser is to pretty-print SQL queries. By
|
||||
|
@@ -14,8 +14,8 @@
|
||||
+ Version history: ChangeLog
|
||||
+ General notes: README
|
||||
+ License: LICENSE
|
||||
* Documentation version: $Id: Documentation.html,v 1.427 2003/04/10
|
||||
16:38:46 nijel Exp $
|
||||
* Documentation version: $Id: Documentation.html,v 1.428 2003/04/10
|
||||
16:48:30 nijel Exp $
|
||||
|
||||
Requirements
|
||||
|
||||
@@ -1032,6 +1032,12 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
||||
$cfg['BrowseMIME'] boolean
|
||||
Enable MIME-transformations.
|
||||
|
||||
$cfg['MaxExactCount'] integer
|
||||
Determines for how large tables phpMyAdmin should get exact row
|
||||
count by SELECT COUNT. If approximate row cound is smaller than
|
||||
this value, SELECT COUNT will be used, otherwise only value
|
||||
returned by SHOW TABLE STATUS.
|
||||
|
||||
$cfg['SQP']['fmtType'] string [html|none]
|
||||
The main use of the new SQL Parser is to pretty-print SQL
|
||||
queries. By default we use HTML to format the query, but you
|
||||
|
Reference in New Issue
Block a user