~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_string.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:
36
36
  size_t length;
37
37
} LEX_STRING;
38
38
 
 
39
inline const LEX_STRING &null_lex_string()
 
40
{
 
41
  static LEX_STRING tmp= { NULL, 0 };
 
42
  return tmp;
 
43
}
 
44
 
 
45
#define NULL_LEX_STRING null_lex_string()
 
46
 
39
47
struct execute_string_t : public lex_string_t
40
48
{
41
49
private: