~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

  • Committer: Brian Aker
  • Date: 2009-06-30 00:17:07 UTC
  • mfrom: (1079.2.9 info-schema-plugin)
  • Revision ID: brian@gaz-20090630001707-33byyr838fb60u9m
MergeĀ PadraigĀ 

Show diffs side-by-side

added added

removed removed

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