~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_table.cc

Updated an include guard thanks to a nice catch during code review from Jay. Thanks Jay!

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
{
70
68
  }
71
69
  this->cache.pos=pos;
72
70
}
73
 
 
74
 
} /* namespace drizzled */