~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

  • Committer: Stewart Smith
  • Date: 2009-07-02 17:18:18 UTC
  • mfrom: (1085 staging)
  • mto: This revision was merged to the branch mainline in revision 1089.
  • Revision ID: stewart@flamingspork.com-20090702171818-qrp4d403iw8tazlg
mergeĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
780
780
 
781
781
enum enum_duplicates { DUP_ERROR, DUP_REPLACE, DUP_UPDATE };
782
782
 
783
 
/*
784
 
  Make sure that the order of schema_tables and enum_schema_tables are the same.
785
 
*/
786
 
 
787
 
enum enum_schema_tables
788
 
{
789
 
  SCH_COLUMNS= 0,
790
 
  SCH_GLOBAL_STATUS,
791
 
  SCH_GLOBAL_VARIABLES,
792
 
  SCH_KEY_COLUMN_USAGE,
793
 
  SCH_OPEN_TABLES,
794
 
  SCH_PLUGINS,
795
 
  SCH_REFERENTIAL_CONSTRAINTS,
796
 
  SCH_SCHEMATA,
797
 
  SCH_SESSION_STATUS,
798
 
  SCH_SESSION_VARIABLES,
799
 
  SCH_STATISTICS,
800
 
  SCH_STATUS,
801
 
  SCH_TABLES,
802
 
  SCH_TABLE_CONSTRAINTS,
803
 
  SCH_TABLE_NAMES,
804
 
  SCH_VARIABLES
805
 
};
806
 
 
807
 
 
808
783
#define MY_I_S_MAYBE_NULL 1
809
784
#define MY_I_S_UNSIGNED   2
810
785