~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
  "ANSI",
152
152
  NULL
153
153
};
154
 
#define MASK_ANSI_QUOTES \
155
 
(\
156
 
 (1<<2)  | /* POSTGRESQL */\
157
 
 (1<<3)  | /* ORACLE     */\
158
 
 (1<<4)  | /* MSSQL      */\
159
 
 (1<<5)  | /* DB2        */\
160
 
 (1<<6)  | /* MAXDB      */\
161
 
 (1<<10)   /* ANSI       */\
162
 
)
163
154
static TYPELIB compatible_mode_typelib= {array_elements(compatible_mode_names) - 1,
164
155
                                  "", compatible_mode_names, NULL};
165
156