~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.cc

  • Committer: Lee Bieber
  • Date: 2011-01-24 17:20:08 UTC
  • mfrom: (2107.2.1 trunk-bug-703913)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: kalebral@gmail.com-20110124172008-y5maihyoyu7gn18p
Merge Andrew - fix bug 703913: some support-files should be dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
 
22
 
#include <config.h>
 
22
#include "config.h"
23
23
 
24
24
#include <uuid/uuid.h>
25
25
 
26
 
#include <drizzled/show.h>
27
 
#include <drizzled/message/schema.h>
28
 
#include <drizzled/session.h>
 
26
#include "drizzled/show.h"
 
27
#include "drizzled/message/schema.h"
 
28
#include "drizzled/session.h"
29
29
 
30
 
#include <drizzled/catalog/local.h>
 
30
#include "drizzled/catalog/local.h"
31
31
 
32
32
namespace drizzled {
33
33
namespace message {
34
34
namespace schema {
35
35
 
36
 
shared_ptr make_shared(identifier::Schema::const_reference identifier)
37
 
{
38
 
  shared_ptr shared(new message::Schema);
39
 
 
40
 
  init(*shared, identifier.getSchemaName());
41
 
 
42
 
  return shared;
43
 
}
44
 
 
45
36
shared_ptr make_shared(const std::string &name_arg)
46
37
{
47
38
  shared_ptr shared(new message::Schema);