Advertisement
brook-tribe

Allow SQL_BIG_SELECTS

Jan 28th, 2014
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. // Snippet now hosted here: https://gist.github.com/elimn/21fd07b551d19546706d
  2.  
  3. add_action('init', 'tribe_allow_large_joins');
  4. function tribe_allow_large_joins(){
  5.     global $wpdb;
  6.     $wpdb->query('SET SQL_BIG_SELECTS=1');
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement