~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_export.h

  • Committer: Monty Taylor
  • Date: 2010-10-12 20:20:44 UTC
  • mto: (1842.1.3 build) (1843.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: mordred@inaugust.com-20101012202044-yfrmnmkznvkqfxe4
Added support for valgrind suppressions.
Run strip-valgrind as part of make valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
55
55
  bool is_unsafe_field_sep;
56
56
  bool fixed_row_size;
57
57
public:
58
 
  select_export(file_exchange *ex) :
59
 
    select_to_file(ex),
60
 
    field_term_length(0),
61
 
    field_sep_char(0),
62
 
    escape_char(0),
63
 
    line_sep_char(0),
64
 
    field_term_char(0),
65
 
    is_ambiguous_field_sep(0),
66
 
    is_ambiguous_field_term(0),
67
 
    is_unsafe_field_sep(0),
68
 
    fixed_row_size(0)
69
 
  {}
 
58
  select_export(file_exchange *ex) :select_to_file(ex) {}
70
59
  ~select_export();
71
60
  int prepare(List<Item> &list, Select_Lex_Unit *u);
72
61
  bool send_data(List<Item> &items);