~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.h

  • Committer: Brian Aker
  • Date: 2008-12-05 07:53:48 UTC
  • Revision ID: brian@tangent.org-20081205075348-h2pj34kucebkdnow
Remove random dead variables/defines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
#define EXTRA_RECORDS   10                      /* Extra records in sort */
84
84
#define SCROLL_EXTRA    5                       /* Extra scroll-rows. */
85
85
#define FIELD_NAME_USED ((uint) 32768)          /* Bit set if fieldname used */
86
 
#define FORM_NAME_USED  ((uint) 16384)          /* Bit set if formname used */
87
86
#define FIELD_NR_MASK   16383                   /* To get fieldnumber */
88
87
#define FERR            -1                      /* Error from my_functions */
89
88
#define CREATE_MODE     0                       /* Default mode on new files */
119
118
  Views are not processed.
120
119
*/
121
120
#define OPEN_TABLE_ONLY        OPEN_FRM_FILE_ONLY*2
122
 
/**
123
 
  This flag is used in function get_all_tables() which fills
124
 
  I_S tables with data which are retrieved from frm files and storage engine
125
 
  The flag means that we need to process views only to get necessary data.
126
 
  Tables are not processed.
127
 
*/
128
 
#define OPEN_VIEW_ONLY         OPEN_TABLE_ONLY*2
129
 
/**
130
 
  This flag is used in function get_all_tables() which fills
131
 
  I_S tables with data which are retrieved from frm files and storage engine.
132
 
  The flag means that we need to open a view using
133
 
  open_normal_and_derived_tables() function.
134
 
*/
135
 
#define OPEN_VIEW_FULL         OPEN_VIEW_ONLY*2
136
 
/**
137
 
  This flag is used in function get_all_tables() which fills
138
 
  I_S tables with data which are retrieved from frm files and storage engine.
139
 
  The flag means that I_S table uses optimization algorithm.
140
 
*/
141
 
#define OPTIMIZE_I_S_TABLE     OPEN_VIEW_FULL*2
142
121
 
143
122
#define SC_INFO_LENGTH 4                /* Form format constant */
144
123
#define TE_INFO_LENGTH 3