~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/base.h

  • Committer: Brian Aker
  • Date: 2011-02-04 09:28:16 UTC
  • mfrom: (2140.1.4 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092816-2s32j9hlh6ztz7ti
Merge in fix for not found table (simplifies the caller as well).

Events are now just being processed on shared tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
    event_observers is a class containing all the event plugins that have 
615
615
    registered an interest in this table.
616
616
  */
617
 
  private:
618
 
  plugin::EventObserverList *event_observers;
619
 
  public:
620
 
  plugin::EventObserverList *getTableObservers() 
 
617
  virtual plugin::EventObserverList *getTableObservers() 
621
618
  { 
622
 
    return event_observers;
 
619
    return NULL;
623
620
  }
624
621
  
625
 
  void setTableObservers(plugin::EventObserverList *observers) 
626
 
  { 
627
 
    event_observers= observers;
628
 
  }
 
622
  virtual void setTableObservers(plugin::EventObserverList *) 
 
623
  { }
629
624
  
630
625
  /*
631
626
    Set share's identifier information.