~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blitzdb/blitzdata.cc

Fixed the bug on tables with only 1 row and added a new test file for testing JOIN operations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
char *BlitzData::next_key_and_row(const char *key, const size_t klen,
180
180
                                  int *next_key_len, const char **value,
181
181
                                  int *value_len) {
182
 
  return tchdbgetnext3(data_table, key, klen, next_key_len,
183
 
                       value, value_len);
 
182
  return tchdbgetnext3(data_table, key, klen, next_key_len, value, value_len);
184
183
}
185
184
 
186
185
char *BlitzData::first_row(int *row_len) {