~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_table.cc

Style cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
 
21
#include <drizzled/server_includes.h>
22
22
#include <drizzled/join_table.h>
23
23
#include <drizzled/field/blob.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
25
 
28
26
void JoinTable::readCachedRecord()
29
27
{
30
28
  unsigned char *pos;
31
29
  uint32_t length;
32
30
  bool last_record;
33
 
  CacheField *copy,*end_field;
 
31
  CACHE_FIELD *copy,*end_field;
34
32
 
35
33
  last_record= this->cache.record_nr++ == this->cache.ptr_record;
36
34
  pos= this->cache.pos;
70
68
  }
71
69
  this->cache.pos=pos;
72
70
}
73
 
 
74
 
} /* namespace drizzled */