~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.h

  • Committer: Brian Aker
  • Date: 2010-12-23 22:20:46 UTC
  • mto: (2026.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2027.
  • Revision ID: brian@tangent.org-20101223222046-152kydsd1cyexfme
Update to tests, we just want to look at our own tables, not global.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_MESSAGE_H
22
22
#define DRIZZLED_MESSAGE_H
23
23
 
24
 
#include <drizzled/message/table.h>
25
 
#include <drizzled/message/schema.h>
 
24
#include "drizzled/message/table.h"
 
25
#include "drizzled/message/schema.h"
26
26
#if 0
27
 
#include <drizzled/message/transaction.pb.h>
 
27
#include "drizzled/message/transaction.pb.h"
28
28
#include <google/protobuf/text_format.h>
29
29
#endif
30
 
#include <drizzled/identifier.h>
31
30
 
32
31
#include <boost/shared_ptr.hpp>
33
32
 
34
33
namespace drizzled {
35
34
namespace message {
36
35
 
 
36
void init(drizzled::message::Schema &arg, const std::string &name_arg);
 
37
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
 
38
 
37
39
void update(drizzled::message::Schema &arg);
38
40
void update(drizzled::message::Table &arg);
39
41
 
45
47
const std::string &type(bool type);
46
48
const std::string &type(drizzled::message::Table::Index::IndexType type);
47
49
const std::string &type(drizzled::message::Table::ForeignKeyConstraint::ForeignKeyMatchOption type);
48
 
const std::string &type(drizzled::message::Table::TableType type);
49
50
 
50
51
#if 0
51
52
std::ostream& operator<<(std::ostream& output, const message::Transaction &message);