~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ident.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#pragma once
21
 
 
22
 
#include <drizzled/item.h>
23
 
 
24
 
namespace drizzled {
25
 
 
 
20
#ifndef DRIZZLED_ITEM_IDENT_H
 
21
#define DRIZZLED_ITEM_IDENT_H
 
22
 
 
23
#include "drizzled/item.h"
 
24
 
 
25
namespace drizzled
 
26
{
 
27
 
 
28
class Name_resolution_context;
 
29
class TableList;
26
30
extern uint32_t lower_case_table_names;
27
31
 
28
32
class Item_ident :public Item
64
68
  const char *full_name() const;
65
69
  void cleanup();
66
70
  bool remove_dependence_processor(unsigned char * arg);
67
 
  virtual void print(String *str);
 
71
  virtual void print(String *str, enum_query_type query_type);
68
72
  virtual bool change_context_processor(unsigned char *cntx)
69
73
    { context= (Name_resolution_context *)cntx; return false; }
70
74
  friend bool insert_fields(Session *session, Name_resolution_context *context,
71
75
                            const char *db_name,
72
 
                            const char *table_name, List<Item>::iterator *it,
 
76
                            const char *table_name, List_iterator<Item> *it,
73
77
                            bool any_privileges);
74
78
};
75
79
 
96
100
 
97
101
} /* namespace drizzled */
98
102
 
 
103
#endif /* DRIZZLED_ITEM_IDENT_H */