~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Lee Bieber
  • Date: 2010-11-14 23:15:42 UTC
  • mfrom: (1929.1.42 warning-stack-frame)
  • Revision ID: kalebral@gmail.com-20101114231542-fnnu6ydd2p17n582
Merge Monty - fix bug 672372: some functions use > 32k stack

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
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
 
21
 
 
22
20
#ifndef DRIZZLED_SQL_BASE_H
23
21
#define DRIZZLED_SQL_BASE_H
24
22
 
25
23
#include <drizzled/table.h>
26
24
#include <drizzled/table/concurrent.h>
27
25
 
28
 
#include "drizzled/visibility.h"
29
 
 
30
26
namespace drizzled
31
27
{
32
28
class TableShare;
39
35
 
40
36
table::Cache &get_open_cache();
41
37
 
42
 
DRIZZLED_API void kill_drizzle(void);
 
38
void kill_drizzle(void);
43
39
 
44
40
/* sql_base.cc */
45
41
void set_item_name(Item *item,char *pos,uint32_t length);
57
53
                               Item *default_value, Item *on_update_value,
58
54
                               LEX_STRING *comment, char *change,
59
55
                               List<String> *interval_list, CHARSET_INFO *cs);
 
56
void store_position_for_column(const char *name);
60
57
bool push_new_name_resolution_context(Session *session,
61
58
                                      TableList *left_op,
62
59
                                      TableList *right_op);