~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.h

Added the testsuite location finding code to support in-plugin-dir test suites.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_SQL_ERROR_H
21
21
#define DRIZZLED_SQL_ERROR_H
22
22
 
23
 
#include "drizzled/memory/sql_alloc.h"
 
23
#include <drizzled/sql_alloc.h>
24
24
#include "drizzled/lex_string.h"
25
25
 
26
26
#include <bitset>
27
27
 
28
 
namespace drizzled
29
 
{
30
 
 
31
 
class DRIZZLE_ERROR: public memory::SqlAlloc
 
28
class DRIZZLE_ERROR: public Sql_alloc
32
29
{
33
30
public:
34
31
  static const uint32_t NUM_ERRORS= 4;
59
56
 
60
57
extern const LEX_STRING warning_level_names[];
61
58
 
62
 
} /* namespace drizzled */
63
 
 
64
59
#endif /* DRIZZLED_SQL_ERROR_H */