mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 06:55:25 +02:00
[ticket/10653] Call get_row_count of base class in mysql get_estimated_row_count
There is no point in fetching the table status again. PHPBB3-10653
This commit is contained in:
parent
01d90e59a8
commit
c11607bdd1
@ -344,7 +344,7 @@ class dbal_mysql extends dbal
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->get_row_count($table_name);
|
return parent::get_row_count($table_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -341,7 +341,7 @@ class dbal_mysqli extends dbal
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->get_row_count($table_name);
|
return parent::get_row_count($table_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user