~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.cc

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

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