~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.cc

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
244
244
 
245
245
  if (engine->uncacheable())
246
246
  {
247
 
    const_item_cache= 0;
 
247
    const_item_cache= false;
248
248
    if (engine->uncacheable(UNCACHEABLE_RAND))
249
249
    {
250
250
      used_tables_cache|= RAND_TABLE_BIT;
394
394
  {
395
395
    // did all used tables become static?
396
396
    if (!(used_tables_cache & ~engine->upper_select_const_tables()))
397
 
      const_item_cache= 1;
 
397
      const_item_cache= true;
398
398
  }
399
399
}
400
400