~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
extern bool opt_using_transactions;
181
181
extern bool using_update_log, server_id_supplied;
182
182
extern bool opt_update_log, opt_bin_log, opt_error_log;
183
 
extern bool opt_log; 
 
183
extern bool opt_log;
184
184
extern bool opt_slow_log;
185
185
extern ulong log_output_options;
186
186
extern bool opt_log_queries_not_using_indexes;
301
301
void unlock_table_names(Session *session, TableList *table_list,
302
302
                        TableList *last_table);
303
303
bool lock_table_names_exclusively(Session *session, TableList *table_list);
304
 
bool is_table_name_exclusively_locked_by_this_thread(Session *session, 
 
304
bool is_table_name_exclusively_locked_by_this_thread(Session *session,
305
305
                                                     TableList *table_list);
306
306
bool is_table_name_exclusively_locked_by_this_thread(Session *session, unsigned char *key,
307
307
                                                     int key_length);
387
387
void init_read_record(READ_RECORD *info, Session *session, Table *reg_form,
388
388
                      SQL_SELECT *select,
389
389
                      int use_record_cache, bool print_errors);
390
 
void init_read_record_idx(READ_RECORD *info, Session *session, Table *table, 
 
390
void init_read_record_idx(READ_RECORD *info, Session *session, Table *table,
391
391
                          bool print_error, uint32_t idx);
392
392
void end_read_record(READ_RECORD *info);
393
393
ha_rows filesort(Session *session, Table *form,struct st_sort_field *sortorder,