~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_symbol.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-22 23:26:26 UTC
  • mto: (1039.5.43 replication)
  • mto: This revision was merged to the branch mainline in revision 1130.
  • Revision ID: osullivan.padraig@gmail.com-20090722232626-mu4khq7ho6dqcf7q
Created a simple filtered replicator that can filter by schema name or table
name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
 
21
21
/* This struct includes all reserved words and functions */
22
22
 
23
 
#ifndef DRIZZLED_LEX_SYMBOL_H
24
 
#define DRIZZLED_LEX_SYMBOL_H
25
 
 
26
 
namespace drizzled
27
 
{
 
23
#ifndef _lex_symbol_h
 
24
#define _lex_symbol_h
28
25
 
29
26
typedef struct st_sym_group {
30
27
  const char *name;
43
40
  uint32_t   length;
44
41
} LEX_SYMBOL;
45
42
 
 
43
 
46
44
extern SYM_GROUP sym_group_common;
47
45
extern SYM_GROUP sym_group_geom;
48
46
extern SYM_GROUP sym_group_rtree;
49
47
 
50
 
} /* namespace drizzled */
51
48
 
52
 
#endif /* DRIZZLED_LEX_SYMBOL_H */
 
49
#endif /* _lex_symbol_h */