WC_Admin_Report::enable_big_selects()

Enables big mysql selects for reports, just once for this session.


Description Description


Source Source

File: includes/admin/reports/class-wc-admin-report.php

	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;
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.