~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/catalog.cc

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
RemoveĀ customĀ error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
 
125
125
bool Catalog::lock(const identifier::Catalog &identifier)
126
126
{
127
 
  catalog::error_t error;
 
127
  drizzled::error_t error;
128
128
  
129
129
  // We insert a lock into the cache, if this fails we bail.
130
130
  if (not catalog::Cache::singleton().lock(identifier, error))
131
131
  {
132
 
    catalog::error(error, identifier);
 
132
    my_error(error, identifier);
133
133
 
134
134
    return false;
135
135
  }
140
140
 
141
141
bool Catalog::unlock(const identifier::Catalog &identifier)
142
142
{
143
 
  catalog::error_t error;
 
143
  drizzled::error_t error;
144
144
  if (not catalog::Cache::singleton().unlock(identifier, error))
145
145
  {
146
 
    catalog::error(error, identifier);
 
146
    my_error(error, identifier);
147
147
  }
148
148
 
149
149
  return false;
188
188
 
189
189
bool plugin::Catalog::getMessage(const identifier::Catalog &identifier, message::catalog::shared_ptr &message)
190
190
{
191
 
  catalog::error_t error;
 
191
  drizzled::error_t error;
192
192
  catalog::Instance::shared_ptr instance= catalog::Cache::singleton().find(identifier, error);
193
193
 
194
194
  if (instance and instance->message())
210
210
 
211
211
catalog::Instance::shared_ptr plugin::Catalog::getInstance(const identifier::Catalog &identifier)
212
212
{
213
 
  catalog::error_t error;
 
213
  drizzled::error_t error;
214
214
  catalog::Instance::shared_ptr instance= catalog::Cache::singleton().find(identifier, error);
215
215
 
216
216
  if (instance)