~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_index.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

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
 
#pragma once
 
21
#ifndef DRIZZLED_STATEMENT_CREATE_INDEX_H
 
22
#define DRIZZLED_STATEMENT_CREATE_INDEX_H
22
23
 
23
24
#include <drizzled/statement/create_table.h>
24
25
 
25
 
namespace drizzled {
26
 
namespace statement {
 
26
namespace drizzled
 
27
{
 
28
class Session;
 
29
 
 
30
namespace statement
 
31
{
27
32
 
28
33
class CreateIndex : public CreateTable
29
34
{
30
35
public:
31
 
  CreateIndex(Session *in_session);
 
36
  CreateIndex(Session *in_session, const drizzled::ha_build_method);
32
37
 
33
38
  bool execute();
34
39
};
37
42
 
38
43
} /* namespace drizzled */
39
44
 
 
45
#endif /* DRIZZLED_STATEMENT_CREATE_INDEX_H */