~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/errmsg.h

  • Committer: Prafulla Tekawade
  • Date: 2010-07-13 16:07:35 UTC
  • mto: (1662.1.4 rollup)
  • mto: This revision was merged to the branch mainline in revision 1664.
  • Revision ID: prafulla_t@users.sourceforge.net-20100713160735-2fsdtrm3azayuyu1
This bug is simillar to mysql bug 36133
http://bugs.mysql.com/bug.php?id=36133

Taking changes from that fix.

  - The problem was that the range optimizer evaluated constant expressions, 
    and among them it would try to evaluate IN-subquery predicates slated for
    handling with materialization strategy. However, these predicates require
    that parent_join->setup_subquery_materialization() is invoked before one
    attempts to evaluate them.
  
  - Fixed by making the range optimizer not to evaluate expressions that have
    item->is_expensive() == TRUE (these are materialization subqueries and 
    stored function calls). This should also resolve the problem that EXPLAIN 
    may be too long. 
    This change cuts off some opportunities for range optimizer, but this is 
    the price we're willing to pay for separation of query optimization and
    execution. 

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 */