~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-22 17:45:22 UTC
  • mto: This revision was merged to the branch mainline in revision 2347.
  • Revision ID: olafvdspek@gmail.com-20110622174522-81mj1izig7kj2ujp
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
5617
5617
  stat= (JoinTable*) join->session->mem.calloc(sizeof(JoinTable)*table_count);
5618
5618
  stat_ref= (JoinTable**) join->session->mem.alloc(sizeof(JoinTable*)*MAX_TABLES);
5619
5619
  table_vector= (Table**) join->session->mem.alloc(sizeof(Table*)*(table_count*2));
 
5620
  // table_vector= new (join->session->mem) Table*[2 * table_count];
5620
5621
 
5621
5622
  join->best_ref=stat_vector;
5622
5623