~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

  • Committer: Monty Taylor
  • Date: 2010-12-24 07:15:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2029.
  • Revision ID: mordred@inaugust.com-20101224071543-ab082y5circku6v5
Renamed things prefixed mysql_ or mysqld_

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
  Send all notes, errors or warnings to the client in a result set
186
186
 
187
187
  SYNOPSIS
188
 
    mysqld_show_warnings()
 
188
    show_warnings()
189
189
    session                     Thread handler
190
190
    levels_to_show      Bitmap for which levels to show
191
191
 
205
205
  { C_STRING_WITH_LEN("?") }
206
206
};
207
207
 
208
 
bool mysqld_show_warnings(Session *session,
209
 
                          bitset<DRIZZLE_ERROR::NUM_ERRORS> &levels_to_show)
 
208
bool show_warnings(Session *session,
 
209
                   bitset<DRIZZLE_ERROR::NUM_ERRORS> &levels_to_show)
210
210
{
211
211
  List<Item> field_list;
212
212