~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_ident.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-24 00:16:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110324001614-wvmgc6eg52oq2321
Remove const_reference and reference from Session

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#ifndef DRIZZLED_TABLE_IDENT_H
22
 
#define DRIZZLED_TABLE_IDENT_H
23
 
 
24
 
#include "drizzled/session.h"
25
 
 
26
 
namespace drizzled
27
 
{
 
21
#pragma once
 
22
 
 
23
#include <drizzled/lex_string.h>
 
24
#include <drizzled/memory/sql_alloc.h>
 
25
#include <drizzled/util/test.h>
 
26
 
 
27
namespace drizzled {
 
28
 
 
29
class Select_Lex_Unit;
 
30
 
 
31
extern char empty_c_string[1];
 
32
extern char internal_table_name[2];
28
33
 
29
34
/* Structure for db & table in sql_yacc */
30
35
class Table_ident :public memory::SqlAlloc
66
71
 
67
72
} /* namespace drizzled */
68
73
 
69
 
#endif /* DRIZZLED_TABLE_IDENT_H */