~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.h

  • Committer: David Shrewsbury
  • Date: 2010-09-09 21:56:04 UTC
  • mto: (1754.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1755.
  • Revision ID: shrewsbury.dave@gmail.com-20100909215604-hi1jaml3z3z9ozb7
Use of String::c_ptr() in temporal functions can corrupt PBXT row cache, so make sure temporaries are used.

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
44
44
 
45
45
int mysql_rm_table_part2(Session *session, TableList *tables, bool if_exists,
46
46
                         bool drop_temporary);
 
47
void write_bin_log_drop_table(Session *session,
 
48
                              bool if_exists, const char *db_name,
 
49
                              const char *table_name);
 
50
bool quick_rm_table(Session& session,
 
51
                    TableIdentifier &identifier);
47
52
void close_cached_table(Session *session, Table *table);
48
53
 
49
54
void wait_while_table_is_used(Session *session, Table *table,
56
61
bool mysql_optimize_table(Session* session, TableList* table_list,
57
62
                          HA_CHECK_OPT* check_opt);
58
63
 
59
 
void write_bin_log(Session *session, const std::string &query);
 
64
void write_bin_log(Session *session,
 
65
                   char const *query);
60
66
 
61
67
bool is_primary_key(KeyInfo *key_info);
62
68
const char* is_primary_key_name(const char* key_name);