~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/schema.h

  • Committer: Brian Aker
  • Date: 2011-02-12 10:35:45 UTC
  • mto: (2170.1.1 alter-table)
  • mto: This revision was merged to the branch mainline in revision 2172.
  • Revision ID: brian@tangent.org-20110212103545-zeftv4qu828mkx4t
Remove the pass by reference, it really wasn't a good choice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        continue;
53
53
      }
54
54
 
55
 
      bool is_schema_parsed= plugin::StorageEngine::getSchemaDefinition(schema_identifier, schema);
 
55
      schema= plugin::StorageEngine::getSchemaDefinition(schema_identifier);
56
56
      schema_iterator++;
57
57
 
58
 
      if (is_schema_parsed)
 
58
      if (schema)
59
59
        return schema;
60
60
    }
61
61