~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä, Stewart Smith
  • Date: 2010-11-17 05:52:09 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1971.
  • Revision ID: stewart@flamingspork.com-20101117055209-69m035q6h7e1txrc
Merge Revision revid:marko.makela@oracle.com-20100629113248-fvl48lnzr44z94gg from MySQL InnoDB

Original revid:marko.makela@oracle.com-20100629113248-fvl48lnzr44z94gg

Original Authors: Marko Mkel <marko.makela@oracle.com>
Original commit message:
Bug#52199 utf32: mbminlen=4, mbmaxlen=4, type->mbminlen=0, type->mbmaxlen=4

Merge and adjust a forgotten change to fix this bug.
rb://393 approved by Jimmy Yang
  ------------------------------------------------------------------------
  r3794 | marko | 2009-01-07 14:14:53 +0000 (Wed, 07 Jan 2009) | 18 lines

  branches/6.0: Allow the minimum length of a multi-byte character to be
  up to 4 bytes. (Bug #35391)

  dtype_t, dict_col_t: Replace mbminlen:2, mbmaxlen:3 with mbminmaxlen:5.
  In this way, the 5 bits can hold two values of 0..4, and the storage size
  of the fields will not cross the 64-bit boundary.  Encode the values as
  DATA_MBMAX * mbmaxlen + mbminlen.  Define the auxiliary macros
  DB_MBMINLEN(mbminmaxlen), DB_MBMAXLEN(mbminmaxlen), and
  DB_MINMAXLEN(mbminlen, mbmaxlen).

  Try to trim and pad UTF-16 and UTF-32 with spaces as appropriate.

  Alexander Barkov suggested the use of cs->cset->fill(cs, buff, len, 0x20).
  ha_innobase::store_key_val_for_row() now does that, but the added function
  row_mysql_pad_col() does not, because it doesn't have the MySQL TABLE object.

  rb://49 approved by Heikki Tuuri
  ------------------------------------------------------------------------

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef PLUGIN_SYSLOG_ERRMSG_H
21
21
#define PLUGIN_SYSLOG_ERRMSG_H
22
22
 
 
23
#include "module.h"
23
24
#include <stdarg.h>
24
25
#include <drizzled/plugin/error_message.h>
25
26
 
26
 
namespace drizzle_plugin
27
 
{
28
 
namespace error_message
29
 
{
30
 
 
31
 
class Syslog : public drizzled::plugin::ErrorMessage
32
 
{
33
 
private:
34
 
  int _facility;
35
 
  int _priority;
36
 
 
37
 
  Syslog();
38
 
  Syslog(const Syslog&);
39
 
  Syslog& operator=(const Syslog&);
40
 
 
41
 
public:
42
 
  explicit Syslog(const std::string& facility,
43
 
                  const std::string& priority);
44
 
 
45
 
  virtual bool errmsg(drizzled::error::level_t, const char *format, va_list ap);
 
27
class ErrorMessage_syslog : public drizzled::plugin::ErrorMessage
 
28
{
 
29
 private:
 
30
  int syslog_facility;
 
31
  int syslog_priority;
 
32
 
 
33
  ErrorMessage_syslog(const ErrorMessage_syslog&);
 
34
  ErrorMessage_syslog& operator=(const ErrorMessage_syslog&);
 
35
 
 
36
 public:
 
37
  ErrorMessage_syslog();
 
38
 
 
39
  virtual bool errmsg(drizzled::Session *, int, const char *format, va_list ap);
46
40
};
47
41
 
48
 
} /* namespace error_message */
49
 
} /* namespace drizzle_plugin */
50
 
 
51
42
#endif /* PLUGIN_SYSLOG_ERRMSG_H */