WC_Admin_Report::enable_big_selects
Enables big mysql selects for reports, just once for this session.
Метод класса: WC_Admin_Report{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$result = WC_Admin_Report::enable_big_selects();
Код WC_Admin_Report::enable_big_selects() WC Admin Report::enable big selects WC 10.4.3
protected static function enable_big_selects() {
static $big_selects = false;
global $wpdb;
if ( ! $big_selects ) {
$wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' );
$big_selects = true;
}
}