~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2008-07-04 22:46:21 UTC
  • Revision ID: brian@tangent.org-20080704224621-24b2ykda0vgp7xdi
Removed preload from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1597
1597
    res= mysql_assign_to_keycache(thd, first_table, &lex->ident);
1598
1598
    break;
1599
1599
  }
1600
 
  case SQLCOM_PRELOAD_KEYS:
1601
 
  {
1602
 
    DBUG_ASSERT(first_table == all_tables && first_table != 0);
1603
 
    res = mysql_preload_keys(thd, first_table);
1604
 
    break;
1605
 
  }
1606
1600
  case SQLCOM_CHANGE_MASTER:
1607
1601
  {
1608
1602
    pthread_mutex_lock(&LOCK_active_mi);