~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/execute/symbol.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-26 10:23:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2456.
  • Revision ID: olafvdspek@gmail.com-20111026102323-09bxs9tyqjxn3z04
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
namespace drizzled {
43
43
namespace execute {
44
44
 
45
 
union YYSTYPE
 
45
struct YYSTYPE
46
46
{
47
47
  long long number;  
48
48
  lex_string_t string;
51
51
} // namespace execute
52
52
} // namespace drizzled
53
53
 
54
 
typedef union drizzled::execute::YYSTYPE YYSTYPE;
 
54
typedef drizzled::execute::YYSTYPE YYSTYPE;
55
55