~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/variables.h

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef PLUGIN_STATUS_DICTIONARY_VARIABLES_H
22
 
#define PLUGIN_STATUS_DICTIONARY_VARIABLES_H
 
21
#ifndef PLUGIN_DATA_ENGINE_VARIABLES_H
 
22
#define PLUGIN_DATA_ENGINE_VARIABLES_H
23
23
 
24
 
#include "plugin/status_dictionary/dictionary.h"
 
24
#include "plugin/data_engine/state_tool.h"
25
25
 
26
26
class VariablesTool : public StateTool
27
27
{
37
37
 
38
38
  drizzled::drizzle_show_var *getVariables()
39
39
  {
40
 
    return enumerate_sys_vars(current_session); // Final value unused
 
40
    return enumerate_sys_vars(current_session, false); // Final value unused
41
41
  }
42
42
};
43
43
 
44
 
#endif /* PLUGIN_STATUS_DICTIONARY_VARIABLES_H */
 
44
#endif // PLUGIN_DATA_ENGINE_VARIABLES_H