~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_warnings.cc

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  warning_levels.set(DRIZZLE_ERROR::WARN_LEVEL_NOTE);
37
37
  warning_levels.set(DRIZZLE_ERROR::WARN_LEVEL_WARN);
38
38
  warning_levels.set(DRIZZLE_ERROR::WARN_LEVEL_ERROR);
39
 
  bool res= show_warnings(getSession(), warning_levels);
40
 
 
 
39
  bool res= show_warnings(session, warning_levels);
41
40
  return res;
42
41
}
43
42