~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * Defines the Join class
25
25
 */
26
26
 
27
 
#ifndef DRIZZLED_JOIN_H
28
 
#define DRIZZLED_JOIN_H
 
27
#pragma once
29
28
 
 
29
#include <drizzled/dynamic_array.h>
30
30
#include <drizzled/optimizer/position.h>
31
 
#include <drizzled/session.h>
32
31
#include <drizzled/sql_select.h>
 
32
#include <drizzled/tmp_table_param.h>
33
33
#include <bitset>
34
34
 
35
 
namespace drizzled
36
 
{
37
 
 
38
 
class Session;
 
35
namespace drizzled {
39
36
 
40
37
class Join :public memory::SqlAlloc
41
38
{
274
271
  }
275
272
  inline void init_items_ref_array()
276
273
  {
277
 
    items0= ref_pointer_array + all_fields.elements;
 
274
    items0= ref_pointer_array + all_fields.size();
278
275
    memcpy(items0, ref_pointer_array, ref_pointer_array_size);
279
276
    current_ref_pointer_array= items0;
280
277
  }
378
375
 
379
376
} /* namespace drizzled */
380
377
 
381
 
#endif /* DRIZZLED_JOIN_H */