~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/errname.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
typedef struct
26
26
{
27
27
  const char *name;
28
 
  uint32_t        code;
 
28
  uint        code;
29
29
} st_error;
30
30
 
31
31
static st_error global_error_names[]=
703
703
  { "ER_BACKUP_LOG_WRITE_ERROR", 1670 },
704
704
  { "ER_TABLESPACE_NOT_EMPTY", 1671 },
705
705
  { "ER_BACKUP_TS_CHANGE", 1672 },
706
 
  { "ER_VCOL_BASED_ON_VCOL", 1673 },
707
 
  { "ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED", 1674 },
708
 
  { "ER_DATA_CONVERSION_ERROR_FOR_VIRTUAL_COLUMN", 1675 },
709
 
  { "ER_PRIMARY_KEY_BASED_ON_VIRTUAL_COLUMN", 1676 },
710
 
  { "ER_KEY_BASED_ON_GENERATED_VIRTUAL_COLUMN", 1677 },
711
 
  { "ER_WRONG_FK_OPTION_FOR_VIRTUAL_COLUMN", 1678 },
712
 
  { "ER_WARNING_NON_DEFAULT_VALUE_FOR_VIRTUAL_COLUMN", 1679 },
713
 
  { "ER_UNSUPPORTED_ACTION_ON_VIRTUAL_COLUMN", 1680 },
714
 
  { "ER_CONST_EXPR_IN_VCOL", 1681 },
715
706
  { 0, 0 }
716
707
};
717
708