~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2008-12-23 10:42:27 UTC
  • Revision ID: brian@tangent.org-20081223104227-uz868s0jsgghxkhx
Remove dead method calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1606
1606
  { return 0; }
1607
1607
  virtual void send_error(uint32_t errcode,const char *err);
1608
1608
  virtual bool send_eof()=0;
1609
 
  /**
1610
 
    Check if this query returns a result set and therefore is allowed in
1611
 
    cursors and set an error message if it is not the case.
1612
 
 
1613
 
    @retval false     success
1614
 
    @retval true      error, an error message is set
1615
 
  */
1616
 
  virtual bool check_simple_select() const;
1617
1609
  virtual void abort() {}
1618
1610
  /*
1619
1611
    Cleanup instance of this class for next execution of a prepared
1655
1647
  bool send_fields(List<Item> &list, uint32_t flags);
1656
1648
  bool send_data(List<Item> &items);
1657
1649
  bool send_eof();
1658
 
  virtual bool check_simple_select() const { return false; }
1659
1650
  void abort();
1660
1651
  virtual void cleanup();
1661
1652
};
2149
2140
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2150
2141
  bool send_data(List<Item> &items);
2151
2142
  bool send_eof();
2152
 
  virtual bool check_simple_select() const;
2153
2143
  void cleanup();
2154
2144
};
2155
2145