~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_state.cc

Fixed -Wmissing-declarations

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
  { ER_DUP_ENTRY_WITH_KEY_NAME              ,"23000", "S1009" },
247
247
};
248
248
 
249
 
bool compare_errno_map(errno_sqlstate_map a,
250
 
                       errno_sqlstate_map b)
 
249
static bool compare_errno_map(errno_sqlstate_map a,
 
250
                              errno_sqlstate_map b)
251
251
{
252
252
  return (a.drizzle_errno < b.drizzle_errno);
253
253
}