~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

All of the outstanding plugin loader system cleanups:
Libraries know how to load and unload themselves.
Error message constants changed name to be generic.
Plugins dlopen() once and only once and also always dlclose().

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
N_("Can't load function '%-.192s'"),
279
279
/* ER_CANT_INITIALIZE_UDF   */
280
280
N_("Can't initialize function '%-.192s'; %-.80s"),
281
 
/* ER_UDF_NO_PATHS   */
282
 
N_("No paths allowed for shared library"),
 
281
/* ER_PLUGIN_NO_PATHS   */
 
282
N_("No paths allowed for plugin library"),
283
283
/* ER_UDF_EXISTS   */
284
 
N_("Function '%-.192s' already exists"),
 
284
N_("Plugin '%-.192s' already exists"),
285
285
/* ER_CANT_OPEN_LIBRARY   */
286
286
N_("Can't open shared library '%-.192s' (errno: %d %-.128s)"),
287
287
/* ER_CANT_FIND_DL_ENTRY */
288
 
N_("Can't find symbol '%-.128s' in library"),
 
288
N_("Can't find symbol '%-.128s' in library '%-.128s'"),
289
289
/* ER_FUNCTION_NOT_DEFINED   */
290
290
N_("Function '%-.192s' is not defined"),
291
291
/* ER_HOST_IS_BLOCKED   */