~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common.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:
323
323
#define packet_error (~(uint32_t) 0)
324
324
 
325
325
 
326
 
/* Shutdown/kill enums and constants */ 
 
326
/* Shutdown/kill enums and constants */
327
327
 
328
328
/* Bits for THD::killable. */
329
329
#define DRIZZLE_SHUTDOWN_KILLABLE_CONNECT    (unsigned char)(1 << 0)
397
397
  bool const_item;          /* 1 if function always returns the same value */
398
398
  void *extension;
399
399
} UDF_INIT;
400
 
/* 
401
 
  TODO: add a notion for determinism of the UDF. 
 
400
/*
 
401
  TODO: add a notion for determinism of the UDF.
402
402
  See Item_udf_func::update_used_tables ()
403
403
*/
404
404