~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/command/show_status.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-07 18:24:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090807182433-izx39nicngj6l23p
Renamed the command namespace where I was declaring all of these commands to
be the statement namespace. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
namespace drizzled
29
29
{
30
 
namespace command
 
30
namespace statement
31
31
{
32
32
 
33
33
/**
34
34
 * @class ShowStatus
35
 
 * @brief Represents the SHOW STATUS command
 
35
 * @brief Represents the SHOW STATUS statement
36
36
 */
37
37
class ShowStatus : public SqlCommand
38
38
{
51
51
  static const enum enum_sql_command type= SQLCOM_SHOW_STATUS;
52
52
 
53
53
  /**
54
 
   * Mutex needed by the SHOW STATUS command.
 
54
   * Mutex needed by the SHOW STATUS statement.
55
55
   */
56
56
  pthread_mutex_t *show_lock;
57
57
};
58
58
 
59
 
} /* end namespace command */
 
59
} /* end namespace statement */
60
60
 
61
61
} /* end namespace drizzled */
62
62