~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.cc

  • Committer: Jay Pipes
  • Date: 2010-04-23 17:43:11 UTC
  • mto: This revision was merged to the branch mainline in revision 1524.
  • Revision ID: jpipes@serialcoder-20100423174311-ze5sq5nrbb7km2po
ha_rnd_init -> startTableScan, rnd_init -> doStartTableScan, ha_rnd_end -> endTableScan, rnd_end -> doEndTableScan

Show diffs side-by-side

added added

removed removed

Lines of Context:
2280
2280
  if (table->cursor->inited)
2281
2281
    table->cursor->endIndexScan();
2282
2282
 
2283
 
  table->cursor->ha_rnd_init(1);
 
2283
  table->cursor->startTableScan(1);
2284
2284
  table->cursor->extra_opt(HA_EXTRA_CACHE,
2285
2285
                         current_session->variables.read_buff_size);
2286
2286
  table->null_row= 0;
2303
2303
    }
2304
2304
  }
2305
2305
 
2306
 
  table->cursor->ha_rnd_end();
 
2306
  table->cursor->endTableScan();
2307
2307
  return(error != 0);
2308
2308
}
2309
2309