~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message.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:
3
3
 *
4
4
 *  Definitions required for Error Message plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
6
 *  Copyright (C) 2008 Sun Microsystems
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
23
23
#define DRIZZLED_PLUGIN_ERROR_MESSAGE_H
24
24
 
25
25
#include "drizzled/plugin/plugin.h"
26
 
#include "drizzled/error/level_t.h"
27
26
 
28
27
#include <stdarg.h>
29
28
 
30
29
#include <string>
31
30
 
32
 
#include "drizzled/visibility.h"
33
 
 
34
31
namespace drizzled
35
32
{
 
33
class Session;
36
34
 
37
35
namespace plugin
38
36
{
39
37
 
40
 
class DRIZZLED_API ErrorMessage : public Plugin
 
38
class ErrorMessage : public Plugin
41
39
{
42
40
  ErrorMessage();
43
41
  ErrorMessage(const ErrorMessage &);
44
42
  ErrorMessage& operator=(const ErrorMessage &);
45
 
 
46
43
public:
47
44
  explicit ErrorMessage(std::string name_arg)
48
45
   : Plugin(name_arg, "ErrorMessage")
49
46
  {}
50
47
  virtual ~ErrorMessage() {}
51
48
 
52
 
  virtual bool errmsg(error::level_t priority, const char *format, va_list ap)=0;
 
49
  virtual bool errmsg(Session *session, int priority,
 
50
                      const char *format, va_list ap)=0;
53
51
 
54
52
  static bool addPlugin(plugin::ErrorMessage *handler);
55
53
  static void removePlugin(plugin::ErrorMessage *handler);
56
54
 
57
 
  static bool vprintf(error::level_t priority, char const *format, va_list ap);
58
 
 
59
 
  bool removeLast() const
60
 
  {
61
 
    return true;
62
 
  }
 
55
  static bool vprintf(Session *session, int priority, char const *format,
 
56
                      va_list ap);
63
57
};
64
58
 
65
59
} /* namespace plugin */