~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/table_cache_dictionary/table_definition_cache.cc

  • Committer: Brian Aker
  • Date: 2010-10-28 17:12:01 UTC
  • mfrom: (1887.1.3 merge)
  • Revision ID: brian@tangent.org-20101028171201-baj6l1bnntn1s4ad
Merge in POTFILES changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
  else
58
58
  {
59
59
    is_primed= true;
60
 
    table_share_iterator= TableShare::getCache().begin();
 
60
    table_share_iterator= definition::Cache::singleton().getCache().begin();
61
61
  }
62
62
 
63
 
  if (table_share_iterator == TableShare::getCache().end())
 
63
  if (table_share_iterator == definition::Cache::singleton().getCache().end())
64
64
    return false;
65
65
 
66
66
  share= (*table_share_iterator).second;
72
72
{
73
73
  while (not nextCore())
74
74
  {
75
 
    if (table_share_iterator != TableShare::getCache().end())
 
75
    if (table_share_iterator != definition::Cache::singleton().getCache().end())
76
76
      continue;
77
77
 
78
78
    return false;