~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.cc

  • Committer: Brian Aker
  • Date: 2010-03-24 01:04:05 UTC
  • mfrom: (1385.1.4 build)
  • Revision ID: brian@gaz-20100324010405-kz4otwzepf0wplnm
new code for show tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  if (isWild(schema_name()))
49
49
    return true;
50
50
 
51
 
  if (not schema_predicate.empty() && schema_predicate.compare(schema_name()))
52
 
    return true;
53
 
 
54
51
  return false;
55
52
}
56
53