~ubuntu-branches/ubuntu/precise/drizzle/precise

« back to all changes in this revision

Viewing changes to plugin/function_engine/cursor.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-02 10:38:38 UTC
  • mfrom: (1.2.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110302103838-4ezi8b065c4bv329
Tags: 2011.03.11-0ubuntu1
* New upstream release.
* Sleep no longer an so.
* Re-add get-orig-source, but this time with working.
* New symbol added to libdrizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
{
31
31
  drizzled::plugin::TableFunction *tool;
32
32
  drizzled::plugin::TableFunction::Generator *generator;
33
 
  size_t record_id;
34
 
  std::vector<unsigned char *> row_cache;
 
33
  size_t row_cache_position;
 
34
  std::vector<unsigned char> row_cache;
35
35
  drizzled::ha_rows estimate_of_rows;
36
36
  drizzled::ha_rows rows_returned;
37
37
 
38
38
  void wipeCache();
39
39
 
 
40
  std::vector <unsigned char> record_buffer; // for pack_row
 
41
  uint32_t max_row_length();
 
42
  unsigned int pack_row(const unsigned char *record);
 
43
 
40
44
public:
41
45
  FunctionCursor(drizzled::plugin::StorageEngine &engine,
42
46
                 drizzled::Table &table_arg);