~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/errmsg.c

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
/* Error messages for MySQL clients */
21
21
/* (Error messages for the daemon are in share/language/errmsg.sys) */
22
22
 
23
 
#include <my_global.h>
24
 
#include <my_sys.h>
 
23
#include <drizzled/global.h>
 
24
#include <mysys/my_sys.h>
25
25
#include "errmsg.h"
26
26
 
27
27
#ifdef GERMAN
77
77
  "Wrong or unknown protocol",
78
78
  "Invalid connection handle",
79
79
  "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)",
80
 
  "Row retrieval was canceled by mysql_stmt_close() call",
 
80
  "Row retrieval was canceled by drizzle_stmt_close() call",
81
81
  "Attempt to read column without prior row fetch",
82
82
  "Prepared statement contains no metadata",
83
83
  "Attempt to read a row while there is no result set associated with the statement",
142
142
  "Wrong or unknown protocol",
143
143
  "Invalid connection handle",
144
144
  "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)",
145
 
  "Row retrieval was canceled by mysql_stmt_close() call",
 
145
  "Row retrieval was canceled by drizzle_stmt_close() call",
146
146
  "Attempt to read column without prior row fetch",
147
147
  "Prepared statement contains no metadata",
148
148
  "Attempt to read a row while there is no result set associated with the statement",
205
205
  "Wrong or unknown protocol",
206
206
  "Invalid connection handle",
207
207
  "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)",
208
 
  "Row retrieval was canceled by mysql_stmt_close() call",
 
208
  "Row retrieval was canceled by drizzle_stmt_close() call",
209
209
  "Attempt to read column without prior row fetch",
210
210
  "Prepared statement contains no metadata",
211
211
  "Attempt to read a row while there is no result set associated with the statement",