~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_string.h

Merge Monty - Added inter-plugin dependencies for controlling plugin load order

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
 
20
#ifndef DRIZZLED_LEX_STRING_H
 
21
#define DRIZZLED_LEX_STRING_H
21
22
 
22
23
#include <stddef.h>
23
24
 
35
36
  size_t length;
36
37
} LEX_STRING;
37
38
 
38
 
inline const LEX_STRING &null_lex_string()
39
 
{
40
 
  static LEX_STRING tmp= { NULL, 0 };
41
 
  return tmp;
42
 
}
43
 
 
44
 
#define NULL_LEX_STRING null_lex_string()
45
 
 
46
39
struct execute_string_t : public lex_string_t
47
40
{
48
41
private:
69
62
 
70
63
} /* namespace drizzled */
71
64
 
 
65
#endif /* DRIZZLED_LEX_STRING_H */