rdbms: Add $join_conds to IDatabase::estimateRowCount()
[lhc/web/wiklou.git] / includes / libs / rdbms / database / IDatabase.php
index 28a8125..2dc7be8 100644 (file)
@@ -822,11 +822,12 @@ interface IDatabase {
         * @param array|string $conds Filters on the table
         * @param string $fname Function name for profiling
         * @param array $options Options for select
+        * @param array|string $join_conds Join conditions
         * @return int Row count
         * @throws DBError
         */
        public function estimateRowCount(
-               $table, $vars = '*', $conds = '', $fname = __METHOD__, $options = []
+               $table, $vars = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
        );
 
        /**