1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2009 Sun Microsystems
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DRIZZLED_STATEMENT_FLUSH_H
#define DRIZZLED_STATEMENT_FLUSH_H
#include <drizzled/statement.h>
namespace drizzled
{
class Session;
namespace statement
{
class Flush : public Statement
{
public:
Flush(Session *in_session)
:
Statement(in_session),
flush_log(false),
flush_tables(false),
flush_tables_with_read_lock(false),
flush_status(false)
{}
bool execute();
private:
bool flush_log;
bool flush_tables;
bool flush_tables_with_read_lock;
bool flush_status;
public:
void setFlushLog(bool f) { flush_log= f; }
void setFlushTables(bool f) { flush_tables= f; }
void setFlushTablesWithReadLock(bool f) {
flush_tables= flush_tables_with_read_lock= f;
}
void setFlushStatus(bool f) { flush_status= f; }
private:
/**
* Reload/resets privileges and the different caches.
*
* @note Depending on 'options', it may be very bad to write the
* query to the binlog (e.g. FLUSH SLAVE); this is a
* pointer where reloadCache() will put 0 if
* it thinks we really should not write to the binlog.
* Otherwise it will put 1.
*
* @return Error status code
* @retval 0 Ok
* @retval !=0 Error; session->killed is set or session->is_error() is true
*/
bool reloadCache();
};
} /* namespace statement */
} /* namespace drizzled */
#endif /* DRIZZLED_STATEMENT_FLUSH_H */
|