~ubuntu-branches/ubuntu/trusty/drizzle/trusty

1 by Monty Taylor
Import upstream version 2010.03.1347
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1.2.4 by Monty Taylor
Import upstream version 2010.12.06
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
1 by Monty Taylor
Import upstream version 2010.03.1347
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
1.1.2 by Monty Taylor
Import upstream version 2011.03.13
20
#pragma once
1 by Monty Taylor
Import upstream version 2010.03.1347
21
22
#include <drizzled/definitions.h>
23
#include <drizzled/sql_list.h>
24
#include <drizzled/item.h>
25
1.1.3 by Tobias Frost
Import upstream version 2012.01.30
26
namespace drizzled {
1 by Monty Taylor
Import upstream version 2010.03.1347
27
11 by Monty Taylor
* Fixed missing build depends.
28
int load(Session *session, file_exchange *ex, TableList *table_list,
1 by Monty Taylor
Import upstream version 2010.03.1347
29
               List<Item> &fields_vars, List<Item> &set_fields,
30
               List<Item> &set_values_list,
31
               enum enum_duplicates handle_duplicates, bool ignore);
32
    
1.1.1 by Monty Taylor
Import upstream version 2010.09.1802
33
int write_record(Session *session, Table *table, CopyInfo *info);
1 by Monty Taylor
Import upstream version 2010.03.1347
34
35
} /* namespace drizzled */
36