~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Mark Atwood
  • Date: 2008-09-12 02:05:59 UTC
  • mto: This revision was merged to the branch mainline in revision 437.
  • Revision ID: mark@fallenpegasus.com-20080912020559-h5j222wq7k294hp0
add pluggable logging

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "sql_repl.h"
19
19
#include "rpl_filter.h"
20
20
#include "repl_failsafe.h"
 
21
#include "logging.h"
21
22
#include <drizzled/drizzled_error_messages.h>
22
23
 
23
24
/**
548
549
                        packet, packet_length, thd->charset());
549
550
    if (!mysql_change_db(thd, &tmp, false))
550
551
    {
 
552
      logging_pre_do(thd, NULL);
 
553
      /* TODO remove general_log_write after pluggable logging works */
551
554
      general_log_write(thd, command, thd->db, thd->db_length);
552
555
      my_ok(thd);
553
556
    }
672
675
    char *packet_end= thd->query + thd->query_length;
673
676
    const char* end_of_stmt= NULL;
674
677
 
 
678
    logging_pre_do(thd, NULL);
 
679
    /* TODO remove general_log_write after pluggable logging works */
675
680
    general_log_write(thd, command, thd->query, thd->query_length);
676
681
 
677
682
    mysql_parse(thd, thd->query, thd->query_length, &end_of_stmt);
941
946
      thd_proc_info(thd, "logging slow query");
942
947
      thd->status_var.long_query_count++;
943
948
      slow_log_print(thd, thd->query, thd->query_length, end_utime_of_query);
 
949
      logging_post_do(thd, NULL);
 
950
      /* TODO remove slow_log_print after pluggable logging works*/
944
951
    }
945
952
  }
946
953
  return;