ApiQueryBase::checkRowCount() was removed
[lhc/web/wiklou.git] / includes / api / ApiQueryBase.php
index 87f8904..76bbc5d 100644 (file)
@@ -587,30 +587,6 @@ abstract class ApiQueryBase extends ApiBase {
         * @{
         */
 
-       /**
-        * Estimate the row count for the SELECT query that would be run if we
-        * called select() right now, and check if it's acceptable.
-        * @deprecated since 1.24
-        * @return bool True if acceptable, false otherwise
-        */
-       protected function checkRowCount() {
-               wfDeprecated( __METHOD__, '1.24' );
-               $db = $this->getDB();
-               $rowcount = $db->estimateRowCount(
-                       $this->tables,
-                       $this->fields,
-                       $this->where,
-                       __METHOD__,
-                       $this->options
-               );
-
-               if ( $rowcount > $this->getConfig()->get( 'APIMaxDBRows' ) ) {
-                       return false;
-               }
-
-               return true;
-       }
-
        /**
         * Gets the personalised direction parameter description
         *