~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-10-15 03:36:56 UTC
  • mfrom: (1843.7.6 refactor)
  • Revision ID: brian@tangent.org-20101015033656-9u3aptcc6ipoc1vj
This removes two of our dead plugins (the bad schedulers).
Also this fixes help messages to say "schema" instead of "database"
everywhere..

Show diffs side-by-side

added added

removed removed

Lines of Context:
637
637
    return output;  // for multiple << operators.
638
638
  }
639
639
 
640
 
protected:
641
 
  bool is_placeholder_created;
642
 
 
643
640
public:
644
 
  bool isPlaceHolder()
 
641
  virtual bool isPlaceHolder(void) const
645
642
  {
646
 
    return is_placeholder_created;
 
643
    return false;
647
644
  }
648
645
};
649
646