~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.h

edit

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
 
 
21
 
 
22
20
#ifndef DRIZZLED_SQL_ERROR_H
23
21
#define DRIZZLED_SQL_ERROR_H
24
22
 
25
 
#include <drizzled/memory/sql_alloc.h>
26
 
#include <drizzled/lex_string.h>
 
23
#include "drizzled/memory/sql_alloc.h"
 
24
#include "drizzled/lex_string.h"
27
25
 
28
26
#include <drizzled/error_t.h>
29
27
 
30
28
#include <bitset>
31
29
 
32
 
#include <drizzled/visibility.h>
33
 
 
34
30
namespace drizzled
35
31
{
36
32
 
63
59
  void set_msg(Session *session, const char *msg_arg);
64
60
};
65
61
 
66
 
DRIZZLED_API DRIZZLE_ERROR *push_warning(Session *session, DRIZZLE_ERROR::enum_warning_level level,
 
62
DRIZZLE_ERROR *push_warning(Session *session, DRIZZLE_ERROR::enum_warning_level level,
67
63
                            drizzled::error_t code, const char *msg);
68
64
 
69
 
DRIZZLED_API void push_warning_printf(Session *session, DRIZZLE_ERROR::enum_warning_level level,
 
65
void push_warning_printf(Session *session, DRIZZLE_ERROR::enum_warning_level level,
70
66
                         drizzled::error_t code, const char *format, ...);
71
67
 
72
68
void drizzle_reset_errors(Session *session, bool force);