~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.cc

  • Committer: Eric Day
  • Date: 2010-03-25 19:28:37 UTC
  • mfrom: (1405 staging)
  • mto: This revision was merged to the branch mainline in revision 1409.
  • Revision ID: eday@oddments.org-20100325192837-4exmacbrywjovsqp
Merged trunk, rsolved conflicts.

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